diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 6602e7b..5a82939 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -214,7 +214,8 @@ draw_bold_text_with_bright_colors: false # # Window opacity as a floating point number from `0.0` to `1.0`. # The value `0.0` is completely transparent and `1.0` is opaque. -background_opacity: 0.9 +window: + opacity: 0.9 #selection: # This string contains all characters that are used as separators for diff --git a/awesome/.config/awesome/ISSUE_TEMPLATE.md b/awesome/.config/awesome/ISSUE_TEMPLATE.md deleted file mode 100755 index 9441919..0000000 --- a/awesome/.config/awesome/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,55 +0,0 @@ -# Please, read me! - -So that I can help you quickly and without having to redirect you here. - -# If you have a question - -Take the following steps: - -1. Use a web search engine -2. Search in [Awesome doc](https://awesomewm.org/doc) -3. Ask the [community](https://awesomewm.org/community) - -and, if you still don't have an answer, you can ask here. - -**Please be warned:** if your question is unrelated to this repository, a reply is only an act of kindness. - -# If you have an issue - -First do - -1. search the [issues section](https://github.com/lcpz/awesome-copycats/issues) and -2. search [lain issues section](https://github.com/lcpz/lain/issues) and -3. search [lain wiki](https://github.com/lcpz/lain/wiki) and -4. try with default Awesome configuration, usually located in `/etc/xdg/awesome/rc.lua` or `/usr/local/etc/xdg/awesome/rc.lua`. - -If you can't find a solution and your issue doesn't happen with default configuration, then go ahead and provide: - -* output of `awesome -v` and `lua -v` -* expected behavior and actual behavior -* steps to reproduce the problem -* X error log (if needed) - -# If Awesome fails to start - -Then something went wrong during its initialisation. You have to provide X error -log. There are two ways: - -1. Restart X like this: - ```shell - startx -- -keeptty -nolisten tcp > $HOME/.xorg.log 2>&1 - ``` - the error log will be output into `$HOME/.xorg.log`. - -2. Use [Xephyr](https://wikipedia.org/wiki/Xephyr): - ```shell - # set screen size as you like - Xephyr :1 -screen 1280x800 2> stdout.txt & DISPLAY=:1 awesome - ``` - the error log will be output into the file `stdout.txt`. - -Before reporting, read the log and see if you can solve it yourself. If you can't, then follow the [previous section](#issuesec). - -# If you have a new feature or theme request - -Write a detailed description of the desired design, preferably with screenshots or mockups. diff --git a/awesome/.config/awesome/README.rst b/awesome/.config/awesome/README.rst deleted file mode 100755 index 16bca72..0000000 --- a/awesome/.config/awesome/README.rst +++ /dev/null @@ -1,198 +0,0 @@ -Awesome WM Copycats -=================== - -------------------------- -Themes for Awesome WM 4.x -------------------------- - -:Author: Luca CPZ -:Version: git -:License: BY-NC-SA_ -:Source: https://github.com/lcpz/awesome-copycats - -Description -=========== - -A set of themes for the Awesome_ window manager, version 4.x. - -See branches_ for previous versions. - -Purpose -======= - -The main purpose of this repository is to spread ready to use configurations, which can also serve as a cookbook for customisation. - -A secondary aim is to add new themes only when they constitute different UI/UX designs. - -Features -======== - -- Modularity -- Autohide widgets -- Autostart windowless processes -- Fast MPD and volume shortcuts (first time this trick has been used in Awesome) -- Shortcuts for copying to the clipboard, toggle wiboxes, widgets popups, screenshots capture, moving and magnifying clients -- Quake drop-down terminal -- Calendar with current day highlighted and months switch with a click/scroll -- Notifications for new mails, current song, volume level, hdd critical state, low battery -- OpenWeatherMap integration -- Net carrier status notifier -- Symbolic tag names -- DWM-like textual layoutbox -- Cairo wibar -- Custom layouts -- No borders when there's only one visible client -- Freedesktop.org compliant menu and desktop icons -- Vi-like client focus -- Non-empty tag browsing -- On-the-fly useless gaps resize -- Dynamic tagging - -Gallery -======= - -**Multicolor**, inspired by lucamanni_ - -.. image:: http://dotshare.it/public/images/uploads/650.png - -**Powerarrow**, porting of romockee_'s - -.. image:: http://dotshare.it/public/images/uploads/1453.png - -**Powerarrow Dark** - -.. image:: http://dotshare.it/public/images/uploads/649.jpg - -**Steamburn**, porting of ok100_'s dwm - -.. image:: http://dotshare.it/public/images/uploads/648.png - -**Blackburn** - -.. image:: http://dotshare.it/public/images/uploads/553.png - -**Dremora** - -.. image:: http://dotshare.it/public/images/uploads/652.png - -**Rainbow** - -.. image:: http://dotshare.it/public/images/uploads/606.png - -**Holo**, requested by amouly_ - -.. image:: http://dotshare.it/public/images/uploads/651.jpg - -**Copland**, inspired by foozer_ - -.. image:: http://dotshare.it/public/images/uploads/655.png - -**Vertex**, requested by swordfischer_ - -.. image:: http://dotshare.it/public/images/uploads/1432.jpg - -Installation -============ - -.. code-block:: shell - - $ git clone --recursive https://github.com/lcpz/awesome-copycats.git - $ mv -bv awesome-copycats/* ~/.config/awesome && rm -rf awesome-copycats - -Usage -===== - -The modular structure allows to - -* set variables -* define startup processes -* change keybindings and layouts -* set client properties - -in ``rc.lua``, and - -* configure widgets -* define wiboxes and screen settings - -in ``theme.lua``, so that you just need to change ``chosen_theme`` variable in ``rc.lua`` to preserve your preferences *and* switch the theme, instead of having file redundancy. - -Just do the following: - -.. code-block:: shell - - $ cd ~/.config/awesome - $ cp rc.lua.template rc.lua - -Then, set the variable ``chosen_theme`` in ``rc.lua`` to your preferred theme, do your settings, and restart Awesome (``Mod4 + ctrl + r``). - -To customize a theme, head over to ``themes/$chosen_theme/theme.lua``. - -Otherwise, if you want to be synced with upstream, modify the theme path in ``rc.lua`` like this: - -.. code-block:: diff - - -beautiful.init(string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), chosen_theme)) - +beautiful.init(string.format("%s/.config/awesome/themes/%s/theme-personal.lua", os.getenv("HOME"), chosen_theme)) - -then, copy ``theme.lua`` to ``theme-personal.lua`` and do your customizations there. - -This way, you can safely ``git pull`` anytime. - -Notes -===== - -Complements are provided by lain_ and freedesktop_. **Be sure** to satisfy their dependencies. - -The fonts used in the screenshots are: Terminus_ (Multicolor, Powerarrow, Powerarrow Dark), Roboto_ (Holo, Vertex) and Tamsyn_ (other ones). - -As taglist font, Blackburn and Dremora use Icons_, Vertex uses FontAwesome_: be sure to have bitmaps enabled if running under Debian or Ubuntu_. - -Due the removal of support for bitmap fonts in Pango 1.44_, the current main font is Terminus (OTB version). Under Arch Linux, use ``community/terminus-font-otb``. - -Every theme has a colorscheme_. - -You can also configure the ``city_id`` in the following snippet in ``/.config/awesome/themes/<>/theme.lua`` to get the correct weather information (we suggest doing it in your ``theme-personal.lua``): - -.. code-block:: - - -- Weather - local weathericon = wibox.widget.imagebox(theme.widget_weather) - theme.weather = lain.widget.weather({ - city_id = 2643743, -- placeholder (London) - notification_preset = { font = "Terminus 10", fg = theme.fg_normal }, - weather_na_markup = markup.fontfg(theme.font, "#eca4c4", "N/A "), - settings = function() - descr = weather_now["weather"][1]["description"]:lower() - units = math.floor(weather_now["main"]["temp"]) - widget:set_markup(markup.fontfg(theme.font, "#eca4c4", descr .. " @ " .. units .. "°C ")) - end - }) - -You can find your ``city_id`` in city.list.json.gz_ after you extract it. - -Additional default software used: :: - - dmenu firefox mpc mpd scrot unclutter xsel slock - -.. _BY-NC-SA: http://creativecommons.org/licenses/by-nc-sa/4.0 -.. _b0ab0d7: https://github.com/lcpz/awesome-copycats/tree/b0ab0d7837987be81b9195a36631df773113d491 -.. _Awesome: http://github.com/awesomeWM/awesome -.. _lucamanni: https://github.com/lucamanni/awesome -.. _romockee: https://github.com/romockee/powerarrow -.. _ok100: http://ok100.deviantart.com/art/DWM-January-2013-348656846 -.. _amouly: https://bbs.archlinux.org/viewtopic.php?pid=1307158#p1307158 -.. _swordfischer: https://github.com/lcpz/awesome-copycats/issues/53 -.. _foozer: http://dotshare.it/dots/499 -.. _lain: https://github.com/lcpz/lain -.. _freedesktop: https://github.com/lcpz/awesome-freedesktop -.. _Terminus: http://terminus-font.sourceforge.net -.. _Tamzen: https://github.com/sunaku/tamzen-font -.. _Roboto: https://fonts.google.com/specimen/Roboto -.. _Tamsyn: http://www.fial.com/~scott/tamsyn-font -.. _colorscheme: https://github.com/lcpz/dots/tree/master/.colors -.. _Icons: https://github.com/lcpz/dots/tree/master/.fonts -.. _Ubuntu: https://wiki.ubuntu.com/Fonts#Enabling_Bitmapped_Fonts -.. _FontAwesome: https://github.com/FortAwesome/Font-Awesome -.. _branches: https://github.com/lcpz/awesome-copycats/branches -.. _city.list.json.gz: http://bulk.openweathermap.org/sample/city.list.json.gz -.. _1.44: https://github.com/lcpz/awesome-copycats/issues/269 diff --git a/awesome/.config/awesome/freedesktop/LICENSE b/awesome/.config/awesome/freedesktop/LICENSE deleted file mode 100755 index 23cb790..0000000 --- a/awesome/.config/awesome/freedesktop/LICENSE +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - {description} - Copyright (C) {year} {fullname} - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - {signature of Ty Coon}, 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/awesome/.config/awesome/freedesktop/README.rst b/awesome/.config/awesome/freedesktop/README.rst deleted file mode 100755 index eecfb40..0000000 --- a/awesome/.config/awesome/freedesktop/README.rst +++ /dev/null @@ -1,52 +0,0 @@ -Awesome-Freedesktop -=================== - -------------------------------------------------------------------- -Freedesktop.org menu and desktop icons support for Awesome WM 4.x -------------------------------------------------------------------- - -:Original author: Antonio Terceiro -:Maintainer: Luca CPZ -:Version: git -:License: GNU-GPL2_ -:Source: https://github.com/lcpz/awesome-freedesktop - -Description ------------ - -This is a port of awesome-freedesktop_ to Awesome_ 4.x. - -See branches_ for previous versions. - -Since the introduction of Menubar_ as core library for providing Freedesktop.org menu functionalities in Awesome, -we can now avoid all the dirty work by just exploiting ``menubar.utils`` functions. - -At the initial status of this port, the menu is pretty much complete, while the desktop icons are very basic, -so the long term objective will be to complete functionalities on this part too. - -More specifically, the todo list is: - -- A better way to handle desktop icons path -- Ability to drag and line up icons -- Event-based signals, in particular: - - Updating trash icon according to its status - - Dynamic update (no need to restart Awesome to see changes on desktop) - -Screenshot ----------- - -.. image:: screenshot.png - :align: center - :alt: Showcase of Freedesktop support in Awesome, using Adwaita icons - -Installation and usage ----------------------- - -Read the wiki_. - -.. _GNU-GPL2: http://www.gnu.org/licenses/gpl-2.0.html -.. _awesome-freedesktop: https://github.com/terceiro/awesome-freedesktop -.. _Awesome: https://github.com/awesomeWM/awesome -.. _branches: https://github.com/lcpz/awesome-freedesktop/branches -.. _Menubar: https://github.com/awesomeWM/awesome/tree/master/lib/menubar -.. _wiki: https://github.com/lcpz/awesome-freedesktop/wiki diff --git a/awesome/.config/awesome/freedesktop/awesome-freedesktop-scm-1.rockspec b/awesome/.config/awesome/freedesktop/awesome-freedesktop-scm-1.rockspec deleted file mode 100755 index 36cab17..0000000 --- a/awesome/.config/awesome/freedesktop/awesome-freedesktop-scm-1.rockspec +++ /dev/null @@ -1,20 +0,0 @@ -package = "awesome-freedesktop" -version = "scm-1" -source = { - url = "https://github.com/lcpz/awesome-freedesktop", - tag = "scm-1`" -} -description = { - summary = "Freedesktop.org menu and desktop icons support for Awesome WM", - homepage = "https://github.com/lcpz/awesome-freedesktop", - license = "GPL v2" -} -dependencies = { - "lua >= 5.3", - "awesome >= 4.0" -} -supported_platforms = { "linux" } -build = { - type = "builtin", - modules = { freedesktop = "init.lua" } -} diff --git a/awesome/.config/awesome/freedesktop/desktop.lua b/awesome/.config/awesome/freedesktop/desktop.lua deleted file mode 100755 index 748debd..0000000 --- a/awesome/.config/awesome/freedesktop/desktop.lua +++ /dev/null @@ -1,254 +0,0 @@ ---[[ - - Awesome-Freedesktop - Freedesktop.org compliant desktop entries and menu - - Desktop section - - Licensed under GNU General Public License v2 - * (c) 2016, Luke Bonham - * (c) 2009-2015, Antonio Terceiro - ---]] - -local awful = require("awful") -local theme = require("beautiful") -local utils = require("menubar.utils") -local wibox = require("wibox") - -local capi = capi -local io = io -local ipairs = ipairs -local mouse = mouse -local os = os -local string = string -local table = table - --- Desktop icons --- freedesktop.desktop -local desktop = { - -- Default desktop basic icons - baseicons = { - [1] = { - label = "This PC", - icon = "computer", - onclick = "computer://" - }, - [2] = { - label = "Home", - icon = "user-home", - onclick = os.getenv("HOME") - }, - [3] = { - label = "Trash", - icon = "user-trash", - onclick = "trash://" - } - }, - -- Default parameters - iconsize = { width = 48, height = 48 }, - labelsize = { width = 140, height = 20 }, - margin = { x = 20, y = 20 }, -} - --- MIME types list -local mime_types = {} - --- Icons positioning -local desktop_current_pos = {} - --- @return iterator on input pipe -local function pipelines(...) - local f = assert(io.popen(...)) - return function () - local data = f:read() - if data == nil then f:close() end - return data - end -end - --- Adds an icon to desktop --- @param args settings from desktop.add_icons --- @param label icon string label --- @param icon icon string file path --- @param onclick function to execute on click -function desktop.add_single_icon(args, label, icon, onclick) - local s = args.screen - - -- define icon dimensions and position - if not desktop_current_pos[s] then - desktop_current_pos[s] = { x = (capi.screen[s].geometry.x + args.iconsize.width + args.margin.x), y = 40 } - end - - local totheight = (icon and args.iconsize.height or 0) + (label and args.labelsize.height or 0) - if totheight == 0 then return end - - if desktop_current_pos[s].y + totheight > capi.screen[s].geometry.height - 40 then - desktop_current_pos[s].x = desktop_current_pos[s].x + args.labelsize.width + args.iconsize.width + args.margin.x - desktop_current_pos[s].y = 40 - end - - local common = { screen = s, bg = "#00000000", visible = true, type = "desktop" } - - -- create icon container - if icon then - common.width = args.iconsize.width - common.height = args.iconsize.height - common.x = desktop_current_pos[s].x - common.y = desktop_current_pos[s].y - - icon = wibox.widget { - image = icon, - resize = false, - widget = wibox.widget.imagebox - } - - icon:buttons(awful.button({ }, 1, nil, onclick)) - - icon_container = wibox(common) - icon_container:set_widget(icon) - - desktop_current_pos[s].y = desktop_current_pos[s].y + args.iconsize.height + 5 - end - - -- create label container - if label then - common.width = args.labelsize.width - common.height = args.labelsize.height - common.x = desktop_current_pos[s].x - (args.labelsize.width/2) + args.iconsize.width/2 - common.y = desktop_current_pos[s].y - - caption = wibox.widget { - text = label, - align = "center", - forced_width = common.width, - forced_height = common.height, - ellipsize = "middle", - widget = wibox.widget.textbox - } - - caption:buttons(awful.button({ }, 1, onclick)) - caption_container = wibox(common) - caption_container:set_widget(caption) - end - - desktop_current_pos[s].y = desktop_current_pos[s].y + args.labelsize.height + args.margin.y -end - --- Adds base icons (This PC, Trash, etc) to desktop --- @param args settings from desktop.add_icons -function desktop.add_base_icons(args) - for _,base in ipairs(args.baseicons) do - desktop.add_single_icon(args, base.label, utils.lookup_icon(base.icon), function() - awful.spawn(string.format("%s '%s'", args.open_with, base.onclick)) - end) - end -end - --- Looks up a suitable icon for filename --- @param filename string file name --- @return icon file path (string) -function desktop.lookup_file_icon(filename) - -- load system MIME types - if #mime_types == 0 then - for line in io.lines("/etc/mime.types") do - if not line:find("^#") then - local parsed = {} - for w in line:gmatch("[^%s]+") do - table.insert(parsed, w) - end - if #parsed > 1 then - for i = 2, #parsed do - mime_types[parsed[i]] = parsed[1]:gsub("/", "-") - end - end - end - end - end - - -- try to search a possible icon among standards - local extension = filename:match("%a+$") - local mime = mime_types[extension] or "" - local mime_family = mime:match("^%a+") or "" - - local possible_filenames = { - mime, "gnome-mime-" .. mime, - mime_family, "gnome-mime-" .. mime_family, - extension - } - - for i, filename in ipairs(possible_filenames) do - local icon = utils.lookup_icon(filename) - if icon then return icon end - end - - -- if we don"t find ad icon, then pretend is a plain text file - return utils.lookup_icon("text-x-generic") -end - --- Parse subdirectories and files list from input directory --- @input dir directory to parse (string) --- @return files table with found entries -function desktop.parse_dirs_and_files(dir) - local files = {} - local paths = pipelines('find '..dir..' -maxdepth 1 -type d | tail -1') - for path in paths do - if path:match("[^/]+$") then - local file = {} - file.filename = path:match("[^/]+$") - file.path = path - file.show = true - file.icon = utils.lookup_icon("folder") - table.insert(files, file) - end - end - local paths = pipelines('find '..dir..' -maxdepth 1 -type f') - for path in paths do - if not path:find("%.desktop$") then - local file = {} - file.filename = path:match("[^/]+$") - file.path = path - file.show = true - file.icon = desktop.lookup_file_icon(file.filename) - table.insert(files, file) - end - end - return files -end - --- Adds subdirectories and files icons from args.dir --- @param args settings from desktop.add_icons -function desktop.add_dirs_and_files_icons(args) - for _, file in ipairs(desktop.parse_dirs_and_files(args.dir)) do - if file.show then - local label = args.showlabels and file.filename or nil - local onclick = function () awful.spawn(string.format("%s '%s'", args.open_with, file.path)) end - desktop.add_single_icon(args, label, file.icon, onclick) - end - end -end - --- Main function, adds base, directory and files icons --- @param args user defined settings, with fallback on defaults -function desktop.add_icons(args) - args = args or {} - args.screen = args.screen or mouse.screen - args.dir = args.dir or os.getenv("HOME") .. "/Desktop" - args.showlabels = args.showlabel or true - args.open_with = args.open_with or "xdg_open" - args.baseicons = args.baseicons or desktop.baseicons - args.iconsize = args.iconsize or desktop.iconsize - args.labelsize = args.labelsize or desktop.labelsize - args.margin = args.margin or desktop.margin - - -- trying to fallback on Adwaita if theme.icon_theme is not defined - -- if Adwaita is missing too, no icons will be shown - if not theme.icon_theme then - theme.icon_theme = args.icon_theme or "Adwaita" - end - - desktop.add_base_icons(args) - desktop.add_dirs_and_files_icons(args) -end - -return desktop diff --git a/awesome/.config/awesome/freedesktop/init.lua b/awesome/.config/awesome/freedesktop/init.lua deleted file mode 100755 index 9350b44..0000000 --- a/awesome/.config/awesome/freedesktop/init.lua +++ /dev/null @@ -1,15 +0,0 @@ ---[[ - - Awesome-Freedesktop - Freedesktop.org compliant desktop entries and menu - - Licensed under GNU General Public License v2 - * (c) 2016, Luke Bonham - * (c) 2009-2015, Antonio Terceiro - ---]] - -return { - desktop = require("freedesktop.desktop"), - menu = require("freedesktop.menu") -} diff --git a/awesome/.config/awesome/freedesktop/menu.lua b/awesome/.config/awesome/freedesktop/menu.lua deleted file mode 100755 index a58559b..0000000 --- a/awesome/.config/awesome/freedesktop/menu.lua +++ /dev/null @@ -1,133 +0,0 @@ ---[[ - - Awesome-Freedesktop - Freedesktop.org compliant desktop entries and menu - - Menu section - - Licensed under GNU General Public License v2 - * (c) 2016, Luke Bonham - * (c) 2014, Harvey Mittens - ---]] - -local awful_menu = require("awful.menu") -local menu_gen = require("menubar.menu_gen") -local menu_utils = require("menubar.utils") -local icon_theme = require("menubar.icon_theme") - -local io, pairs, string, table, os = io, pairs, string, table, os - --- Add support for NixOS systems too -table.insert(menu_gen.all_menu_dirs, string.format("%s/.nix-profile/share/applications", os.getenv("HOME"))) - --- Expecting a wm_name of awesome omits too many applications and tools -menu_utils.wm_name = "" - --- Menu --- freedesktop.menu -local menu = {} - --- Determines if a path points to a directory, by checking if it can be read --- (which is `nil` also for empty files) and if its size is not 0. --- @author blueyed --- @param path the path to check -function menu.is_dir(path) - local f = io.open(path) - return f and not f:read(0) and f:seek("end") ~= 0 and f:close() -end - --- Remove non existent paths in order to avoid issues -local existent_paths = {} -for k,v in pairs(menu_gen.all_menu_dirs) do - if menu.is_dir(v) then - table.insert(existent_paths, v) - end -end -menu_gen.all_menu_dirs = existent_paths - --- Determines whether an table includes a certain element --- @param tab a given table --- @param val the element to search for --- @return true if the given string is found within the search table; otherwise, false if not -function menu.has_value (tab, val) - for index, value in pairs(tab) do - if val:find(value) then - return true - end - end - return false -end - --- Use MenuBar parsing utils to build a menu for Awesome --- @return awful.menu -function menu.build(args) - local args = args or {} - local icon_size = args.icon_size - local before = args.before or {} - local after = args.after or {} - local skip_items = args.skip_items or {} - local sub_menu = args.sub_menu or false - - local result = {} - local _menu = awful_menu({ items = before }) - - menu_gen.generate(function(entries) - -- Add category icons - for k, v in pairs(menu_gen.all_categories) do - table.insert(result, { k, {}, v.icon }) - end - - -- Get items table - for k, v in pairs(entries) do - for _, cat in pairs(result) do - if cat[1] == v.category then - if not menu.has_value(skip_items, v.name) then - table.insert(cat[2], { v.name, v.cmdline, v.icon }) - end - break - end - end - end - - -- Cleanup things a bit - for i = #result, 1, -1 do - local v = result[i] - if #v[2] == 0 then - -- Remove unused categories - table.remove(result, i) - else - --Sort entries alphabetically (by name) - table.sort(v[2], function (a, b) return string.byte(a[1]) < string.byte(b[1]) end) - -- Replace category name with nice name - v[1] = menu_gen.all_categories[v[1]].name - end - end - - -- Sort categories alphabetically also - table.sort(result, function(a, b) return string.byte(a[1]) < string.byte(b[1]) end) - - -- Add menu item to hold the generated menu - if sub_menu then - result = {{sub_menu, result}} - end - - -- Add items to menu - for _, v in pairs(result) do _menu:add(v) end - for _, v in pairs(after) do _menu:add(v) end - end) - - -- Set icon size - if icon_size then - for _,v in pairs(menu_gen.all_categories) do - v.icon = icon_theme():find_icon_path(v.icon_name, icon_size) - end - end - - -- Hold the menu in the module - menu.menu = _menu - - return _menu -end - -return menu diff --git a/awesome/.config/awesome/freedesktop/screenshot.png b/awesome/.config/awesome/freedesktop/screenshot.png deleted file mode 100755 index bf254ac..0000000 Binary files a/awesome/.config/awesome/freedesktop/screenshot.png and /dev/null differ diff --git a/awesome/.config/awesome/json.lua b/awesome/.config/awesome/json.lua deleted file mode 100755 index 711ef78..0000000 --- a/awesome/.config/awesome/json.lua +++ /dev/null @@ -1,388 +0,0 @@ --- --- json.lua --- --- Copyright (c) 2020 rxi --- --- Permission is hereby granted, free of charge, to any person obtaining a copy of --- this software and associated documentation files (the "Software"), to deal in --- the Software without restriction, including without limitation the rights to --- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies --- of the Software, and to permit persons to whom the Software is furnished to do --- so, subject to the following conditions: --- --- The above copyright notice and this permission notice shall be included in all --- copies or substantial portions of the Software. --- --- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR --- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, --- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE --- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER --- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, --- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE --- SOFTWARE. --- - -local json = { _version = "0.1.2" } - -------------------------------------------------------------------------------- --- Encode -------------------------------------------------------------------------------- - -local encode - -local escape_char_map = { - [ "\\" ] = "\\", - [ "\"" ] = "\"", - [ "\b" ] = "b", - [ "\f" ] = "f", - [ "\n" ] = "n", - [ "\r" ] = "r", - [ "\t" ] = "t", -} - -local escape_char_map_inv = { [ "/" ] = "/" } -for k, v in pairs(escape_char_map) do - escape_char_map_inv[v] = k -end - - -local function escape_char(c) - return "\\" .. (escape_char_map[c] or string.format("u%04x", c:byte())) -end - - -local function encode_nil(val) - return "null" -end - - -local function encode_table(val, stack) - local res = {} - stack = stack or {} - - -- Circular reference? - if stack[val] then error("circular reference") end - - stack[val] = true - - if rawget(val, 1) ~= nil or next(val) == nil then - -- Treat as array -- check keys are valid and it is not sparse - local n = 0 - for k in pairs(val) do - if type(k) ~= "number" then - error("invalid table: mixed or invalid key types") - end - n = n + 1 - end - if n ~= #val then - error("invalid table: sparse array") - end - -- Encode - for i, v in ipairs(val) do - table.insert(res, encode(v, stack)) - end - stack[val] = nil - return "[" .. table.concat(res, ",") .. "]" - - else - -- Treat as an object - for k, v in pairs(val) do - if type(k) ~= "string" then - error("invalid table: mixed or invalid key types") - end - table.insert(res, encode(k, stack) .. ":" .. encode(v, stack)) - end - stack[val] = nil - return "{" .. table.concat(res, ",") .. "}" - end -end - - -local function encode_string(val) - return '"' .. val:gsub('[%z\1-\31\\"]', escape_char) .. '"' -end - - -local function encode_number(val) - -- Check for NaN, -inf and inf - if val ~= val or val <= -math.huge or val >= math.huge then - error("unexpected number value '" .. tostring(val) .. "'") - end - return string.format("%.14g", val) -end - - -local type_func_map = { - [ "nil" ] = encode_nil, - [ "table" ] = encode_table, - [ "string" ] = encode_string, - [ "number" ] = encode_number, - [ "boolean" ] = tostring, -} - - -encode = function(val, stack) - local t = type(val) - local f = type_func_map[t] - if f then - return f(val, stack) - end - error("unexpected type '" .. t .. "'") -end - - -function json.encode(val) - return ( encode(val) ) -end - - -------------------------------------------------------------------------------- --- Decode -------------------------------------------------------------------------------- - -local parse - -local function create_set(...) - local res = {} - for i = 1, select("#", ...) do - res[ select(i, ...) ] = true - end - return res -end - -local space_chars = create_set(" ", "\t", "\r", "\n") -local delim_chars = create_set(" ", "\t", "\r", "\n", "]", "}", ",") -local escape_chars = create_set("\\", "/", '"', "b", "f", "n", "r", "t", "u") -local literals = create_set("true", "false", "null") - -local literal_map = { - [ "true" ] = true, - [ "false" ] = false, - [ "null" ] = nil, -} - - -local function next_char(str, idx, set, negate) - for i = idx, #str do - if set[str:sub(i, i)] ~= negate then - return i - end - end - return #str + 1 -end - - -local function decode_error(str, idx, msg) - local line_count = 1 - local col_count = 1 - for i = 1, idx - 1 do - col_count = col_count + 1 - if str:sub(i, i) == "\n" then - line_count = line_count + 1 - col_count = 1 - end - end - error( string.format("%s at line %d col %d", msg, line_count, col_count) ) -end - - -local function codepoint_to_utf8(n) - -- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=iws-appendixa - local f = math.floor - if n <= 0x7f then - return string.char(n) - elseif n <= 0x7ff then - return string.char(f(n / 64) + 192, n % 64 + 128) - elseif n <= 0xffff then - return string.char(f(n / 4096) + 224, f(n % 4096 / 64) + 128, n % 64 + 128) - elseif n <= 0x10ffff then - return string.char(f(n / 262144) + 240, f(n % 262144 / 4096) + 128, - f(n % 4096 / 64) + 128, n % 64 + 128) - end - error( string.format("invalid unicode codepoint '%x'", n) ) -end - - -local function parse_unicode_escape(s) - local n1 = tonumber( s:sub(1, 4), 16 ) - local n2 = tonumber( s:sub(7, 10), 16 ) - -- Surrogate pair? - if n2 then - return codepoint_to_utf8((n1 - 0xd800) * 0x400 + (n2 - 0xdc00) + 0x10000) - else - return codepoint_to_utf8(n1) - end -end - - -local function parse_string(str, i) - local res = "" - local j = i + 1 - local k = j - - while j <= #str do - local x = str:byte(j) - - if x < 32 then - decode_error(str, j, "control character in string") - - elseif x == 92 then -- `\`: Escape - res = res .. str:sub(k, j - 1) - j = j + 1 - local c = str:sub(j, j) - if c == "u" then - local hex = str:match("^[dD][89aAbB]%x%x\\u%x%x%x%x", j + 1) - or str:match("^%x%x%x%x", j + 1) - or decode_error(str, j - 1, "invalid unicode escape in string") - res = res .. parse_unicode_escape(hex) - j = j + #hex - else - if not escape_chars[c] then - decode_error(str, j - 1, "invalid escape char '" .. c .. "' in string") - end - res = res .. escape_char_map_inv[c] - end - k = j + 1 - - elseif x == 34 then -- `"`: End of string - res = res .. str:sub(k, j - 1) - return res, j + 1 - end - - j = j + 1 - end - - decode_error(str, i, "expected closing quote for string") -end - - -local function parse_number(str, i) - local x = next_char(str, i, delim_chars) - local s = str:sub(i, x - 1) - local n = tonumber(s) - if not n then - decode_error(str, i, "invalid number '" .. s .. "'") - end - return n, x -end - - -local function parse_literal(str, i) - local x = next_char(str, i, delim_chars) - local word = str:sub(i, x - 1) - if not literals[word] then - decode_error(str, i, "invalid literal '" .. word .. "'") - end - return literal_map[word], x -end - - -local function parse_array(str, i) - local res = {} - local n = 1 - i = i + 1 - while 1 do - local x - i = next_char(str, i, space_chars, true) - -- Empty / end of array? - if str:sub(i, i) == "]" then - i = i + 1 - break - end - -- Read token - x, i = parse(str, i) - res[n] = x - n = n + 1 - -- Next token - i = next_char(str, i, space_chars, true) - local chr = str:sub(i, i) - i = i + 1 - if chr == "]" then break end - if chr ~= "," then decode_error(str, i, "expected ']' or ','") end - end - return res, i -end - - -local function parse_object(str, i) - local res = {} - i = i + 1 - while 1 do - local key, val - i = next_char(str, i, space_chars, true) - -- Empty / end of object? - if str:sub(i, i) == "}" then - i = i + 1 - break - end - -- Read key - if str:sub(i, i) ~= '"' then - decode_error(str, i, "expected string for key") - end - key, i = parse(str, i) - -- Read ':' delimiter - i = next_char(str, i, space_chars, true) - if str:sub(i, i) ~= ":" then - decode_error(str, i, "expected ':' after key") - end - i = next_char(str, i + 1, space_chars, true) - -- Read value - val, i = parse(str, i) - -- Set - res[key] = val - -- Next token - i = next_char(str, i, space_chars, true) - local chr = str:sub(i, i) - i = i + 1 - if chr == "}" then break end - if chr ~= "," then decode_error(str, i, "expected '}' or ','") end - end - return res, i -end - - -local char_func_map = { - [ '"' ] = parse_string, - [ "0" ] = parse_number, - [ "1" ] = parse_number, - [ "2" ] = parse_number, - [ "3" ] = parse_number, - [ "4" ] = parse_number, - [ "5" ] = parse_number, - [ "6" ] = parse_number, - [ "7" ] = parse_number, - [ "8" ] = parse_number, - [ "9" ] = parse_number, - [ "-" ] = parse_number, - [ "t" ] = parse_literal, - [ "f" ] = parse_literal, - [ "n" ] = parse_literal, - [ "[" ] = parse_array, - [ "{" ] = parse_object, -} - - -parse = function(str, idx) - local chr = str:sub(idx, idx) - local f = char_func_map[chr] - if f then - return f(str, idx) - end - decode_error(str, idx, "unexpected character '" .. chr .. "'") -end - - -function json.decode(str) - if type(str) ~= "string" then - error("expected argument of type string, got " .. type(str)) - end - local res, idx = parse(str, next_char(str, 1, space_chars, true)) - idx = next_char(str, idx, space_chars, true) - if idx <= #str then - decode_error(str, idx, "trailing garbage") - end - return res -end - - -return json diff --git a/awesome/.config/awesome/lain/.gitmodules b/awesome/.config/awesome/lain/.gitmodules deleted file mode 100755 index d95bcb5..0000000 --- a/awesome/.config/awesome/lain/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "lain.wiki"] - path = wiki - url = https://github.com/lcpz/lain.wiki.git diff --git a/awesome/.config/awesome/lain/ISSUE_TEMPLATE.md b/awesome/.config/awesome/lain/ISSUE_TEMPLATE.md deleted file mode 100755 index e9dcc0b..0000000 --- a/awesome/.config/awesome/lain/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,33 +0,0 @@ -# Please, read me! - -So that I can help you quickly and without having to redirect you here. - -# If you have an issue - -**Please read the [wiki](https://github.com/lcpz/lain/wiki) and search the [Issues section](https://github.com/lcpz/lain/issues) first.** - -If you can't find a solution there, then go ahead and provide: - -* output of `awesome -v` and `lua -v` -* expected behavior and actual behavior -* steps to reproduce the problem -* X error log - -# How to provide X error log - -There are two ways: - -* (Physically) Restart X like this: - ```shell - startx -- -keeptty -nolisten tcp > $HOME/.xorg.log 2>&1 - ``` - the error log will be output into `$HOME/.xorg.log`. - -* (Virtually) Use [Xephyr](https://wikipedia.org/wiki/Xephyr): - ```shell - # set screen size as you like - Xephyr :1 -screen 1280x800 2> stdout.txt & DISPLAY=:1 awesome - ``` - the error log will be output in the file `stdout.txt`. - -Before reporting, read the log and see if you can solve it yourself. diff --git a/awesome/.config/awesome/lain/LICENSE b/awesome/.config/awesome/lain/LICENSE deleted file mode 100755 index 23cb790..0000000 --- a/awesome/.config/awesome/lain/LICENSE +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - {description} - Copyright (C) {year} {fullname} - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - {signature of Ty Coon}, 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/awesome/.config/awesome/lain/README.rst b/awesome/.config/awesome/lain/README.rst deleted file mode 100755 index 2b77f9a..0000000 --- a/awesome/.config/awesome/lain/README.rst +++ /dev/null @@ -1,38 +0,0 @@ -Lain -==== - -------------------------------------------------- -Layouts, widgets and utilities for Awesome WM 4.x -------------------------------------------------- - -:Author: Luca CPZ -:Version: git -:License: GNU-GPL2_ -:Source: https://github.com/lcpz/lain - -Description ------------ - -Successor of awesome-vain_, this module provides alternative layouts, asynchronous widgets and utility functions for Awesome_. - -Contributions -------------- - -Constructive criticism and suggestions are welcome. - -If you want to create a pull request, make sure that: - -- Your code fits with the general style of the module. In particular, you should use the same indentation pattern that the code uses, and also avoid adding space at the ends of lines. - -- Your code its easy to understand, maintainable, and modularized. You should also avoid code duplication wherever possible by adding functions to or using lain.helpers_. If something is unclear, or you can not write it in such a way that it will be clear, explain it with a comment. - -- You test your changes before submitting to make sure that you code works and does not break other parts of the module. - -- You update ``wiki`` submodule with a thorough section, if necessary. - -Contributed widgets have to be put in ``widget/contrib``. - -.. _GNU-GPL2: http://www.gnu.org/licenses/gpl-2.0.html -.. _awesome-vain: https://github.com/vain/awesome-vain -.. _Awesome: https://github.com/awesomeWM/awesome -.. _lain.helpers: https://github.com/lcpz/lain/blob/master/helpers.lua diff --git a/awesome/.config/awesome/lain/helpers.lua b/awesome/.config/awesome/lain/helpers.lua deleted file mode 100755 index d6f6b3c..0000000 --- a/awesome/.config/awesome/lain/helpers.lua +++ /dev/null @@ -1,204 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - ---]] - -local spawn = require("awful.spawn") -local timer = require("gears.timer") -local debug = require("debug") -local io = { lines = io.lines, - open = io.open } -local pairs = pairs -local rawget = rawget -local table = { sort = table.sort, unpack = table.unpack } -local unpack = unpack or table.unpack -- lua 5.1 retro-compatibility - --- Lain helper functions for internal use --- lain.helpers -local helpers = {} - -helpers.lain_dir = debug.getinfo(1, 'S').source:match[[^@(.*/).*$]] -helpers.icons_dir = helpers.lain_dir .. 'icons/' -helpers.scripts_dir = helpers.lain_dir .. 'scripts/' - --- {{{ Modules loader - -function helpers.wrequire(table, key) - local module = rawget(table, key) - return module or require(table._NAME .. '.' .. key) -end - --- }}} - --- {{{ File operations - --- check if the file exists and is readable -function helpers.file_exists(path) - local file = io.open(path, "rb") - if file then file:close() end - return file ~= nil -end - --- get a table with all lines from a file -function helpers.lines_from(path) - local lines = {} - for line in io.lines(path) do - lines[#lines + 1] = line - end - return lines -end - --- get a table with all lines from a file matching regexp -function helpers.lines_match(regexp, path) - local lines = {} - for line in io.lines(path) do - if string.match(line, regexp) then - lines[#lines + 1] = line - end - end - return lines -end - --- get first line of a file -function helpers.first_line(path) - local file, first = io.open(path, "rb"), nil - if file then - first = file:read("*l") - file:close() - end - return first -end - --- get first non empty line from a file -function helpers.first_nonempty_line(path) - for line in io.lines(path) do - if #line then return line end - end - return nil -end - --- }}} - --- {{{ Timer maker - -helpers.timer_table = {} - -function helpers.newtimer(name, timeout, fun, nostart, stoppable) - if not name or #name == 0 then return end - name = (stoppable and name) or timeout - if not helpers.timer_table[name] then - helpers.timer_table[name] = timer({ timeout = timeout }) - helpers.timer_table[name]:start() - end - helpers.timer_table[name]:connect_signal("timeout", fun) - if not nostart then - helpers.timer_table[name]:emit_signal("timeout") - end - return stoppable and helpers.timer_table[name] -end - --- }}} - --- {{{ Pipe operations - --- run a command and execute a function on its output (asynchronous pipe) --- @param cmd the input command --- @param callback function to execute on cmd output --- @return cmd PID -function helpers.async(cmd, callback) - return spawn.easy_async(cmd, - function (stdout, stderr, reason, exit_code) - callback(stdout, exit_code) - end) -end - --- like above, but call spawn.easy_async with a shell -function helpers.async_with_shell(cmd, callback) - return spawn.easy_async_with_shell(cmd, - function (stdout, stderr, reason, exit_code) - callback(stdout, exit_code) - end) -end - --- run a command and execute a function on its output line by line -function helpers.line_callback(cmd, callback) - return spawn.with_line_callback(cmd, { - stdout = function (line) - callback(line) - end, - }) -end - --- }}} - --- {{{ A map utility - -helpers.map_table = {} - -function helpers.set_map(element, value) - helpers.map_table[element] = value -end - -function helpers.get_map(element) - return helpers.map_table[element] -end - --- }}} - --- {{{ Misc - --- check if an element exist on a table -function helpers.element_in_table(element, tbl) - for _, i in pairs(tbl) do - if i == element then - return true - end - end - return false -end - --- iterate over table of records sorted by keys -function helpers.spairs(t) - -- collect the keys - local keys = {} - for k in pairs(t) do keys[#keys+1] = k end - - table.sort(keys) - - -- return the iterator function - local i = 0 - return function() - i = i + 1 - if keys[i] then - return keys[i], t[keys[i]] - end - end -end - --- create the partition of singletons of a given set --- example: the trivial partition set of {a, b, c}, is {{a}, {b}, {c}} -function helpers.trivial_partition_set(set) - local ss = {} - for _,e in pairs(set) do - ss[#ss+1] = {e} - end - return ss -end - --- create the powerset of a given set -function helpers.powerset(s) - if not s then return {} end - local t = {{}} - for i = 1, #s do - for j = 1, #t do - t[#t+1] = {s[i],unpack(t[j])} - end - end - return t -end - --- }}} - -return helpers diff --git a/awesome/.config/awesome/lain/icons/cal/black/1.png b/awesome/.config/awesome/lain/icons/cal/black/1.png deleted file mode 100755 index d2fb62e..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/1.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/10.png b/awesome/.config/awesome/lain/icons/cal/black/10.png deleted file mode 100755 index 507b079..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/10.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/11.png b/awesome/.config/awesome/lain/icons/cal/black/11.png deleted file mode 100755 index 336141b..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/11.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/12.png b/awesome/.config/awesome/lain/icons/cal/black/12.png deleted file mode 100755 index c589729..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/12.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/13.png b/awesome/.config/awesome/lain/icons/cal/black/13.png deleted file mode 100755 index 377518b..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/13.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/14.png b/awesome/.config/awesome/lain/icons/cal/black/14.png deleted file mode 100755 index 6f4a9fe..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/14.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/15.png b/awesome/.config/awesome/lain/icons/cal/black/15.png deleted file mode 100755 index 1a271c1..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/15.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/16.png b/awesome/.config/awesome/lain/icons/cal/black/16.png deleted file mode 100755 index 5e65835..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/16.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/17.png b/awesome/.config/awesome/lain/icons/cal/black/17.png deleted file mode 100755 index f3fa0a9..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/17.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/18.png b/awesome/.config/awesome/lain/icons/cal/black/18.png deleted file mode 100755 index 7acb37a..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/18.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/19.png b/awesome/.config/awesome/lain/icons/cal/black/19.png deleted file mode 100755 index a557957..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/19.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/2.png b/awesome/.config/awesome/lain/icons/cal/black/2.png deleted file mode 100755 index 17b33e0..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/2.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/20.png b/awesome/.config/awesome/lain/icons/cal/black/20.png deleted file mode 100755 index 558d111..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/20.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/21.png b/awesome/.config/awesome/lain/icons/cal/black/21.png deleted file mode 100755 index 0bbedc8..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/21.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/22.png b/awesome/.config/awesome/lain/icons/cal/black/22.png deleted file mode 100755 index 762d262..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/22.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/23.png b/awesome/.config/awesome/lain/icons/cal/black/23.png deleted file mode 100755 index a39dcee..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/23.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/24.png b/awesome/.config/awesome/lain/icons/cal/black/24.png deleted file mode 100755 index c00dbca..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/24.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/25.png b/awesome/.config/awesome/lain/icons/cal/black/25.png deleted file mode 100755 index dc9243c..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/25.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/26.png b/awesome/.config/awesome/lain/icons/cal/black/26.png deleted file mode 100755 index 50bb182..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/26.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/27.png b/awesome/.config/awesome/lain/icons/cal/black/27.png deleted file mode 100755 index 0fbf9fc..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/27.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/28.png b/awesome/.config/awesome/lain/icons/cal/black/28.png deleted file mode 100755 index def6ab2..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/28.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/29.png b/awesome/.config/awesome/lain/icons/cal/black/29.png deleted file mode 100755 index 531923c..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/29.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/3.png b/awesome/.config/awesome/lain/icons/cal/black/3.png deleted file mode 100755 index 98b552d..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/3.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/30.png b/awesome/.config/awesome/lain/icons/cal/black/30.png deleted file mode 100755 index ca58151..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/30.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/31.png b/awesome/.config/awesome/lain/icons/cal/black/31.png deleted file mode 100755 index 6e8da21..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/31.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/4.png b/awesome/.config/awesome/lain/icons/cal/black/4.png deleted file mode 100755 index 4335979..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/4.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/5.png b/awesome/.config/awesome/lain/icons/cal/black/5.png deleted file mode 100755 index 576ec11..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/5.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/6.png b/awesome/.config/awesome/lain/icons/cal/black/6.png deleted file mode 100755 index 56fa8ab..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/6.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/7.png b/awesome/.config/awesome/lain/icons/cal/black/7.png deleted file mode 100755 index 7c90b3a..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/7.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/8.png b/awesome/.config/awesome/lain/icons/cal/black/8.png deleted file mode 100755 index 9d1f28e..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/8.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/black/9.png b/awesome/.config/awesome/lain/icons/cal/black/9.png deleted file mode 100755 index 00d0933..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/black/9.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/1.png b/awesome/.config/awesome/lain/icons/cal/white/1.png deleted file mode 100755 index a0faa20..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/1.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/10.png b/awesome/.config/awesome/lain/icons/cal/white/10.png deleted file mode 100755 index 7d9343b..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/10.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/11.png b/awesome/.config/awesome/lain/icons/cal/white/11.png deleted file mode 100755 index 7af5e99..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/11.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/12.png b/awesome/.config/awesome/lain/icons/cal/white/12.png deleted file mode 100755 index b164f85..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/12.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/13.png b/awesome/.config/awesome/lain/icons/cal/white/13.png deleted file mode 100755 index fef74f3..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/13.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/14.png b/awesome/.config/awesome/lain/icons/cal/white/14.png deleted file mode 100755 index d747a6b..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/14.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/15.png b/awesome/.config/awesome/lain/icons/cal/white/15.png deleted file mode 100755 index 64418a6..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/15.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/16.png b/awesome/.config/awesome/lain/icons/cal/white/16.png deleted file mode 100755 index 8b86700..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/16.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/17.png b/awesome/.config/awesome/lain/icons/cal/white/17.png deleted file mode 100755 index 033b5ff..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/17.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/18.png b/awesome/.config/awesome/lain/icons/cal/white/18.png deleted file mode 100755 index 0cf1c24..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/18.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/19.png b/awesome/.config/awesome/lain/icons/cal/white/19.png deleted file mode 100755 index bfd3530..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/19.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/2.png b/awesome/.config/awesome/lain/icons/cal/white/2.png deleted file mode 100755 index e7f3fa4..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/2.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/20.png b/awesome/.config/awesome/lain/icons/cal/white/20.png deleted file mode 100755 index 9a5a1fb..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/20.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/21.png b/awesome/.config/awesome/lain/icons/cal/white/21.png deleted file mode 100755 index 266ab9f..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/21.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/22.png b/awesome/.config/awesome/lain/icons/cal/white/22.png deleted file mode 100755 index f486289..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/22.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/23.png b/awesome/.config/awesome/lain/icons/cal/white/23.png deleted file mode 100755 index 244dceb..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/23.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/24.png b/awesome/.config/awesome/lain/icons/cal/white/24.png deleted file mode 100755 index 0ce1c75..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/24.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/25.png b/awesome/.config/awesome/lain/icons/cal/white/25.png deleted file mode 100755 index 48d279c..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/25.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/26.png b/awesome/.config/awesome/lain/icons/cal/white/26.png deleted file mode 100755 index 7535855..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/26.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/27.png b/awesome/.config/awesome/lain/icons/cal/white/27.png deleted file mode 100755 index 2aa9074..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/27.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/28.png b/awesome/.config/awesome/lain/icons/cal/white/28.png deleted file mode 100755 index 0201976..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/28.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/29.png b/awesome/.config/awesome/lain/icons/cal/white/29.png deleted file mode 100755 index 9305b9b..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/29.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/3.png b/awesome/.config/awesome/lain/icons/cal/white/3.png deleted file mode 100755 index f1eb5de..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/3.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/30.png b/awesome/.config/awesome/lain/icons/cal/white/30.png deleted file mode 100755 index 1ba61aa..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/30.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/31.png b/awesome/.config/awesome/lain/icons/cal/white/31.png deleted file mode 100755 index e9a873b..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/31.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/4.png b/awesome/.config/awesome/lain/icons/cal/white/4.png deleted file mode 100755 index ee1ed6a..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/4.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/5.png b/awesome/.config/awesome/lain/icons/cal/white/5.png deleted file mode 100755 index 466aa71..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/5.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/6.png b/awesome/.config/awesome/lain/icons/cal/white/6.png deleted file mode 100755 index 0a7bf4d..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/6.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/7.png b/awesome/.config/awesome/lain/icons/cal/white/7.png deleted file mode 100755 index e971951..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/7.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/8.png b/awesome/.config/awesome/lain/icons/cal/white/8.png deleted file mode 100755 index cb03d0b..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/8.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/cal/white/9.png b/awesome/.config/awesome/lain/icons/cal/white/9.png deleted file mode 100755 index fca554a..0000000 Binary files a/awesome/.config/awesome/lain/icons/cal/white/9.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/cascade.png b/awesome/.config/awesome/lain/icons/layout/default/cascade.png deleted file mode 100755 index 292a057..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/cascade.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/cascadetile.png b/awesome/.config/awesome/lain/icons/layout/default/cascadetile.png deleted file mode 100755 index ba30f43..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/cascadetile.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/cascadetilew.png b/awesome/.config/awesome/lain/icons/layout/default/cascadetilew.png deleted file mode 100755 index d15eb70..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/cascadetilew.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/cascadew.png b/awesome/.config/awesome/lain/icons/layout/default/cascadew.png deleted file mode 100755 index da64bd6..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/cascadew.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/centerfair.png b/awesome/.config/awesome/lain/icons/layout/default/centerfair.png deleted file mode 100755 index 188c243..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/centerfair.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/centerfairw.png b/awesome/.config/awesome/lain/icons/layout/default/centerfairw.png deleted file mode 100755 index ed4bcf5..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/centerfairw.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/centerwork.png b/awesome/.config/awesome/lain/icons/layout/default/centerwork.png deleted file mode 100755 index 51e06bc..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/centerwork.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/centerworkh.png b/awesome/.config/awesome/lain/icons/layout/default/centerworkh.png deleted file mode 100755 index c59092f..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/centerworkh.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/centerworkhw.png b/awesome/.config/awesome/lain/icons/layout/default/centerworkhw.png deleted file mode 100755 index 7820f8c..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/centerworkhw.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/centerworkw.png b/awesome/.config/awesome/lain/icons/layout/default/centerworkw.png deleted file mode 100755 index 85e6996..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/centerworkw.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/termfair.png b/awesome/.config/awesome/lain/icons/layout/default/termfair.png deleted file mode 100755 index 06226c1..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/termfair.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/default/termfairw.png b/awesome/.config/awesome/lain/icons/layout/default/termfairw.png deleted file mode 100755 index 0a8b576..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/default/termfairw.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/zenburn/cascade.png b/awesome/.config/awesome/lain/icons/layout/zenburn/cascade.png deleted file mode 100755 index fbe4fac..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/zenburn/cascade.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/zenburn/cascadetile.png b/awesome/.config/awesome/lain/icons/layout/zenburn/cascadetile.png deleted file mode 100755 index 2e03a80..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/zenburn/cascadetile.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/zenburn/centerfair.png b/awesome/.config/awesome/lain/icons/layout/zenburn/centerfair.png deleted file mode 100755 index 75dc993..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/zenburn/centerfair.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/zenburn/centerwork.png b/awesome/.config/awesome/lain/icons/layout/zenburn/centerwork.png deleted file mode 100755 index af7a863..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/zenburn/centerwork.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/zenburn/centerworkh.png b/awesome/.config/awesome/lain/icons/layout/zenburn/centerworkh.png deleted file mode 100755 index 88019b3..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/zenburn/centerworkh.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/layout/zenburn/termfair.png b/awesome/.config/awesome/lain/icons/layout/zenburn/termfair.png deleted file mode 100755 index f7640b5..0000000 Binary files a/awesome/.config/awesome/lain/icons/layout/zenburn/termfair.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/mail.png b/awesome/.config/awesome/lain/icons/mail.png deleted file mode 100755 index 9c0c7a3..0000000 Binary files a/awesome/.config/awesome/lain/icons/mail.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/no_net.png b/awesome/.config/awesome/lain/icons/no_net.png deleted file mode 100755 index 3613372..0000000 Binary files a/awesome/.config/awesome/lain/icons/no_net.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/01d.png b/awesome/.config/awesome/lain/icons/openweathermap/01d.png deleted file mode 100755 index 569965e..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/01d.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/01n.png b/awesome/.config/awesome/lain/icons/openweathermap/01n.png deleted file mode 100755 index ce5b135..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/01n.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/02d.png b/awesome/.config/awesome/lain/icons/openweathermap/02d.png deleted file mode 100755 index 2ba9799..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/02d.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/02n.png b/awesome/.config/awesome/lain/icons/openweathermap/02n.png deleted file mode 100755 index 12e4283..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/02n.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/03d.png b/awesome/.config/awesome/lain/icons/openweathermap/03d.png deleted file mode 100755 index 1cf0e9d..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/03d.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/03n.png b/awesome/.config/awesome/lain/icons/openweathermap/03n.png deleted file mode 100755 index 89a42b8..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/03n.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/04d.png b/awesome/.config/awesome/lain/icons/openweathermap/04d.png deleted file mode 100755 index e7fb67f..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/04d.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/04n.png b/awesome/.config/awesome/lain/icons/openweathermap/04n.png deleted file mode 120000 index b9a83df..0000000 --- a/awesome/.config/awesome/lain/icons/openweathermap/04n.png +++ /dev/null @@ -1 +0,0 @@ -04d.png \ No newline at end of file diff --git a/awesome/.config/awesome/lain/icons/openweathermap/09d.png b/awesome/.config/awesome/lain/icons/openweathermap/09d.png deleted file mode 100755 index cfa066a..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/09d.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/09n.png b/awesome/.config/awesome/lain/icons/openweathermap/09n.png deleted file mode 120000 index cca1f5d..0000000 --- a/awesome/.config/awesome/lain/icons/openweathermap/09n.png +++ /dev/null @@ -1 +0,0 @@ -09d.png \ No newline at end of file diff --git a/awesome/.config/awesome/lain/icons/openweathermap/10d.png b/awesome/.config/awesome/lain/icons/openweathermap/10d.png deleted file mode 100755 index 712d0c8..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/10d.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/10n.png b/awesome/.config/awesome/lain/icons/openweathermap/10n.png deleted file mode 120000 index 6e01227..0000000 --- a/awesome/.config/awesome/lain/icons/openweathermap/10n.png +++ /dev/null @@ -1 +0,0 @@ -10d.png \ No newline at end of file diff --git a/awesome/.config/awesome/lain/icons/openweathermap/11d.png b/awesome/.config/awesome/lain/icons/openweathermap/11d.png deleted file mode 100755 index 3b62f7c..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/11d.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/11n.png b/awesome/.config/awesome/lain/icons/openweathermap/11n.png deleted file mode 120000 index b227917..0000000 --- a/awesome/.config/awesome/lain/icons/openweathermap/11n.png +++ /dev/null @@ -1 +0,0 @@ -11d.png \ No newline at end of file diff --git a/awesome/.config/awesome/lain/icons/openweathermap/13d.png b/awesome/.config/awesome/lain/icons/openweathermap/13d.png deleted file mode 100755 index e265b01..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/13d.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/13n.png b/awesome/.config/awesome/lain/icons/openweathermap/13n.png deleted file mode 120000 index 94e5a52..0000000 --- a/awesome/.config/awesome/lain/icons/openweathermap/13n.png +++ /dev/null @@ -1 +0,0 @@ -13d.png \ No newline at end of file diff --git a/awesome/.config/awesome/lain/icons/openweathermap/50d.png b/awesome/.config/awesome/lain/icons/openweathermap/50d.png deleted file mode 100755 index 905ace3..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/50d.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/openweathermap/50n.png b/awesome/.config/awesome/lain/icons/openweathermap/50n.png deleted file mode 120000 index e3ba961..0000000 --- a/awesome/.config/awesome/lain/icons/openweathermap/50n.png +++ /dev/null @@ -1 +0,0 @@ -50d.png \ No newline at end of file diff --git a/awesome/.config/awesome/lain/icons/openweathermap/README.md b/awesome/.config/awesome/lain/icons/openweathermap/README.md deleted file mode 100755 index f908fbd..0000000 --- a/awesome/.config/awesome/lain/icons/openweathermap/README.md +++ /dev/null @@ -1,3 +0,0 @@ -[Plain Weather Icons](http://merlinthered.deviantart.com/art/plain-weather-icons-157162192), created by [MerlinTheRed](http://merlinthered.deviantart.com/). - - diff --git a/awesome/.config/awesome/lain/icons/openweathermap/na.png b/awesome/.config/awesome/lain/icons/openweathermap/na.png deleted file mode 100755 index 1cc5132..0000000 Binary files a/awesome/.config/awesome/lain/icons/openweathermap/na.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/icons/taskwarrior.png b/awesome/.config/awesome/lain/icons/taskwarrior.png deleted file mode 100755 index c64fe86..0000000 Binary files a/awesome/.config/awesome/lain/icons/taskwarrior.png and /dev/null differ diff --git a/awesome/.config/awesome/lain/init.lua b/awesome/.config/awesome/lain/init.lua deleted file mode 100755 index b59d5dd..0000000 --- a/awesome/.config/awesome/lain/init.lua +++ /dev/null @@ -1,15 +0,0 @@ ---[[ - - Lain - Layouts, widgets and utilities for Awesome WM - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - ---]] - -return { - layout = require("lain.layout"), - util = require("lain.util"), - widget = require("lain.widget") -} diff --git a/awesome/.config/awesome/lain/lain-scm-1.rockspec b/awesome/.config/awesome/lain/lain-scm-1.rockspec deleted file mode 100755 index fb1eaaf..0000000 --- a/awesome/.config/awesome/lain/lain-scm-1.rockspec +++ /dev/null @@ -1,27 +0,0 @@ -package = "lain" -version = "scm-1" -source = { - url = "https://github.com/lcpz/lain", - tag = "scm-1`" -} -description = { - summary = "Layout, widgets and utilities for Awesome WM", - detailed = [[ - Successor of awesome-vain, this module provides alternative layouts, asynchronous widgets and utility functions for Awesome WM. - - Dependencies: curl (for IMAP, MPD and weather widgets); Glib >= 2.54 (for filesystems widget). - ]], - homepage = "https://github.com/lcpz/lain", - license = "GPL-2.0" -} -dependencies = { - "lua >= 5.1", - "awesome >= 4.0", - "Glib >= 2.54", - "curl" -} -supported_platforms = { "linux" } -build = { - type = "builtin", - modules = { lain = "init.lua" } -} diff --git a/awesome/.config/awesome/lain/layout/cascade.lua b/awesome/.config/awesome/lain/layout/cascade.lua deleted file mode 100755 index cbc3877..0000000 --- a/awesome/.config/awesome/lain/layout/cascade.lua +++ /dev/null @@ -1,172 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2014, projektile - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local floor = math.floor -local screen = screen - -local cascade = { - name = "cascade", - nmaster = 0, - offset_x = 32, - offset_y = 8, - tile = { - name = "cascadetile", - nmaster = 0, - ncol = 0, - mwfact = 0, - offset_x = 5, - offset_y = 32, - extra_padding = 0 - } -} - -local function do_cascade(p, tiling) - local t = p.tag or screen[p.screen].selected_tag - local wa = p.workarea - local cls = p.clients - - if #cls == 0 then return end - - if not tiling then - -- Cascade windows. - - local num_c - if cascade.nmaster > 0 then - num_c = cascade.nmaster - else - num_c = t.master_count - end - - -- Opening a new window will usually force all existing windows to - -- get resized. This wastes a lot of CPU time. So let's set a lower - -- bound to "how_many": This wastes a little screen space but you'll - -- get a much better user experience. - local how_many = (#cls >= num_c and #cls) or num_c - - local current_offset_x = cascade.offset_x * (how_many - 1) - local current_offset_y = cascade.offset_y * (how_many - 1) - - -- Iterate. - for i = 1,#cls,1 do - local c = cls[i] - local g = {} - - g.x = wa.x + (how_many - i) * cascade.offset_x - g.y = wa.y + (i - 1) * cascade.offset_y - g.width = wa.width - current_offset_x - g.height = wa.height - current_offset_y - - if g.width < 1 then g.width = 1 end - if g.height < 1 then g.height = 1 end - - p.geometries[c] = g - end - else - -- Layout with one fixed column meant for a master window. Its - -- width is calculated according to mwfact. Other clients are - -- cascaded or "tabbed" in a slave column on the right. - - -- (1) (2) (3) (4) - -- +----------+---+ +----------+---+ +----------+---+ +----------+---+ - -- | | | | | 3 | | | 4 | | +---+| - -- | | | -> | | | -> | +---++ -> | +---+|+ - -- | 1 | 2 | | 1 +---++ | 1 | 3 || | 1 +---+|+| - -- | | | | | 2 || | +---++| | +---+|+ | - -- | | | | | || | | 2 | | | | 2 |+ | - -- +----------+---+ +---------+---++ +--------+---+-+ +------+---+---+ - - local mwfact - if cascade.tile.mwfact > 0 then - mwfact = cascade.tile.mwfact - else - mwfact = t.master_width_factor - end - - -- Make slave windows overlap main window? Do this if ncol is 1. - local overlap_main - if cascade.tile.ncol > 0 then - overlap_main = cascade.tile.ncol - else - overlap_main = t.column_count - end - - -- Minimum space for slave windows? See cascade.tile.lua. - local num_c - if cascade.tile.nmaster > 0 then - num_c = cascade.tile.nmaster - else - num_c = t.master_count - end - - local how_many = (#cls - 1 >= num_c and (#cls - 1)) or num_c - - local current_offset_x = cascade.tile.offset_x * (how_many - 1) - local current_offset_y = cascade.tile.offset_y * (how_many - 1) - - if #cls <= 0 then return end - - -- Main column, fixed width and height. - local c = cls[1] - local g = {} - -- Rounding is necessary to prevent the rendered size of slavewid - -- from being 1 pixel off when the result is not an integer. - local mainwid = floor(wa.width * mwfact) - local slavewid = wa.width - mainwid - - if overlap_main == 1 then - g.width = wa.width - - -- The size of the main window may be reduced a little bit. - -- This allows you to see if there are any windows below the - -- main window. - -- This only makes sense, though, if the main window is - -- overlapping everything else. - g.width = g.width - cascade.tile.extra_padding - else - g.width = mainwid - end - - g.height = wa.height - g.x = wa.x - g.y = wa.y - - if g.width < 1 then g.width = 1 end - if g.height < 1 then g.height = 1 end - - p.geometries[c] = g - - -- Remaining clients stacked in slave column, new ones on top. - if #cls <= 1 then return end - for i = 2,#cls do - c = cls[i] - g = {} - - g.width = slavewid - current_offset_x - g.height = wa.height - current_offset_y - - g.x = wa.x + mainwid + (how_many - (i - 1)) * cascade.tile.offset_x - g.y = wa.y + (i - 2) * cascade.tile.offset_y - - if g.width < 1 then g.width = 1 end - if g.height < 1 then g.height = 1 end - - p.geometries[c] = g - end - end -end - -function cascade.tile.arrange(p) - return do_cascade(p, true) -end - -function cascade.arrange(p) - return do_cascade(p, false) -end - -return cascade diff --git a/awesome/.config/awesome/lain/layout/centerwork.lua b/awesome/.config/awesome/lain/layout/centerwork.lua deleted file mode 100755 index 2b38a69..0000000 --- a/awesome/.config/awesome/lain/layout/centerwork.lua +++ /dev/null @@ -1,194 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2018, Eugene Pakhomov - * (c) 2016, Henrik Antonsson - * (c) 2015, Joerg Jaspert - * (c) 2014, projektile - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local floor, max, mouse, mousegrabber, screen = math.floor, math.max, mouse, mousegrabber, screen - -local centerwork = { - name = "centerwork", - horizontal = { name = "centerworkh" } -} - -local function arrange(p, layout) - local t = p.tag or screen[p.screen].selected_tag - local wa = p.workarea - local cls = p.clients - - if #cls == 0 then return end - - local c, g = cls[1], {} - - -- Main column, fixed width and height - local mwfact = t.master_width_factor - local mainhei = floor(wa.height * mwfact) - local mainwid = floor(wa.width * mwfact) - local slavewid = wa.width - mainwid - local slaveLwid = floor(slavewid / 2) - local slaveRwid = slavewid - slaveLwid - local slavehei = wa.height - mainhei - local slaveThei = floor(slavehei / 2) - local slaveBhei = slavehei - slaveThei - local nbrFirstSlaves = floor(#cls / 2) - local nbrSecondSlaves = floor((#cls - 1) / 2) - - local slaveFirstDim, slaveSecondDim = 0, 0 - - if layout.name == "centerwork" then -- vertical - if nbrFirstSlaves > 0 then slaveFirstDim = floor(wa.height / nbrFirstSlaves) end - if nbrSecondSlaves > 0 then slaveSecondDim = floor(wa.height / nbrSecondSlaves) end - - g.height = wa.height - g.width = mainwid - - g.x = wa.x + slaveLwid - g.y = wa.y - else -- horizontal - if nbrFirstSlaves > 0 then slaveFirstDim = floor(wa.width / nbrFirstSlaves) end - if nbrSecondSlaves > 0 then slaveSecondDim = floor(wa.width / nbrSecondSlaves) end - - g.height = mainhei - g.width = wa.width - - g.x = wa.x - g.y = wa.y + slaveThei - end - - g.width = max(g.width, 1) - g.height = max(g.height, 1) - - p.geometries[c] = g - - -- Auxiliary clients - if #cls <= 1 then return end - for i = 2, #cls do - local c, g = cls[i], {} - local idxChecker, dimToAssign - - local rowIndex = floor(i/2) - - if layout.name == "centerwork" then - if i % 2 == 0 then -- left slave - g.x = wa.x - g.y = wa.y + (rowIndex - 1) * slaveFirstDim - g.width = slaveLwid - - idxChecker, dimToAssign = nbrFirstSlaves, slaveFirstDim - else -- right slave - g.x = wa.x + slaveLwid + mainwid - g.y = wa.y + (rowIndex - 1) * slaveSecondDim - g.width = slaveRwid - - idxChecker, dimToAssign = nbrSecondSlaves, slaveSecondDim - end - - -- if last slave in row, use remaining space for it - if rowIndex == idxChecker then - g.height = wa.y + wa.height - g.y - else - g.height = dimToAssign - end - else - if i % 2 == 0 then -- top slave - g.x = wa.x + (rowIndex - 1) * slaveFirstDim - g.y = wa.y - g.height = slaveThei - - idxChecker, dimToAssign = nbrFirstSlaves, slaveFirstDim - else -- bottom slave - g.x = wa.x + (rowIndex - 1) * slaveSecondDim - g.y = wa.y + slaveThei + mainhei - g.height = slaveBhei - - idxChecker, dimToAssign = nbrSecondSlaves, slaveSecondDim - end - - -- if last slave in row, use remaining space for it - if rowIndex == idxChecker then - g.width = wa.x + wa.width - g.x - else - g.width = dimToAssign - end - end - - g.width = max(g.width, 1) - g.height = max(g.height, 1) - - p.geometries[c] = g - end -end - -local function mouse_resize_handler(c, corner, x, y, orientation) - local wa = c.screen.workarea - local mwfact = c.screen.selected_tag.master_width_factor - local g = c:geometry() - local offset = 0 - local cursor = "cross" - - local corner_coords - - if orientation == 'vertical' then - if g.height + 15 >= wa.height then - offset = g.height * .5 - cursor = "sb_h_double_arrow" - elseif not (g.y + g.height + 15 > wa.y + wa.height) then - offset = g.height - end - corner_coords = { x = wa.x + wa.width * (1 - mwfact) / 2, y = g.y + offset } - else - if g.width + 15 >= wa.width then - offset = g.width * .5 - cursor = "sb_v_double_arrow" - elseif not (g.x + g.width + 15 > wa.x + wa.width) then - offset = g.width - end - corner_coords = { y = wa.y + wa.height * (1 - mwfact) / 2, x = g.x + offset } - end - - mouse.coords(corner_coords) - - local prev_coords = {} - - mousegrabber.run(function(_mouse) - if not c.valid then return false end - for _, v in ipairs(_mouse.buttons) do - if v then - prev_coords = { x = _mouse.x, y = _mouse.y } - local new_mwfact - if orientation == 'vertical' then - new_mwfact = 1 - (_mouse.x - wa.x) / wa.width * 2 - else - new_mwfact = 1 - (_mouse.y - wa.y) / wa.height * 2 - end - c.screen.selected_tag.master_width_factor = math.min(math.max(new_mwfact, 0.01), 0.99) - return true - end - end - return prev_coords.x == _mouse.x and prev_coords.y == _mouse.y - end, cursor) -end - -function centerwork.arrange(p) - return arrange(p, centerwork) -end - -function centerwork.horizontal.arrange(p) - return arrange(p, centerwork.horizontal) -end - -function centerwork.mouse_resize_handler(c, corner, x, y) - return mouse_resize_handler(c, corner, x, y, 'vertical') -end - -function centerwork.horizontal.mouse_resize_handler(c, corner, x, y) - return mouse_resize_handler(c, corner, x, y, 'horizontal') -end - -return centerwork diff --git a/awesome/.config/awesome/lain/layout/init.lua b/awesome/.config/awesome/lain/layout/init.lua deleted file mode 100755 index 6478b06..0000000 --- a/awesome/.config/awesome/lain/layout/init.lua +++ /dev/null @@ -1,19 +0,0 @@ ---[[ - - Lain - Layouts, widgets and utilities for Awesome WM - - Layouts section - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local wrequire = require("lain.helpers").wrequire -local setmetatable = setmetatable - -local layout = { _NAME = "lain.layout" } - -return setmetatable(layout, { __index = wrequire }) diff --git a/awesome/.config/awesome/lain/layout/termfair.lua b/awesome/.config/awesome/lain/layout/termfair.lua deleted file mode 100755 index e33894e..0000000 --- a/awesome/.config/awesome/lain/layout/termfair.lua +++ /dev/null @@ -1,237 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2014, projektile - * (c) 2013, Luca CPZ - * (c) 2010, Nicolas Estibals - * (c) 2010-2012, Peter Hofmann - ---]] - -local math = math -local screen = screen -local tonumber = tonumber - -local termfair = { name = "termfair" } -termfair.center = { name = "centerfair" } - -local function do_fair(p, orientation) - local t = p.tag or screen[p.screen].selected_tag - local wa = p.workarea - local cls = p.clients - - if #cls == 0 then return end - - if orientation == "west" then - -- Layout with fixed number of vertical columns (read from nmaster). - -- New windows align from left to right. When a row is full, a now - -- one above it is created. Like this: - - -- (1) (2) (3) - -- +---+---+---+ +---+---+---+ +---+---+---+ - -- | | | | | | | | | | | | - -- | 1 | | | -> | 2 | 1 | | -> | 3 | 2 | 1 | -> - -- | | | | | | | | | | | | - -- +---+---+---+ +---+---+---+ +---+---+---+ - - -- (4) (5) (6) - -- +---+---+---+ +---+---+---+ +---+---+---+ - -- | 4 | | | | 5 | 4 | | | 6 | 5 | 4 | - -- +---+---+---+ -> +---+---+---+ -> +---+---+---+ - -- | 3 | 2 | 1 | | 3 | 2 | 1 | | 3 | 2 | 1 | - -- +---+---+---+ +---+---+---+ +---+---+---+ - - -- How many vertical columns? Read from nmaster on the tag. - local num_x = tonumber(termfair.nmaster) or t.master_count - local ncol = tonumber(termfair.ncol) or t.column_count - - if num_x <= 2 then num_x = 2 end - if ncol <= 1 then ncol = 1 end - local width = math.floor(wa.width/num_x) - - local num_y = math.max(math.ceil(#cls / num_x), ncol) - local height = math.floor(wa.height/num_y) - local cur_num_x = num_x - local at_x = 0 - local at_y = 0 - - local remaining_clients = #cls - - -- We start the first row. Left-align by limiting the number of - -- available slots. - if remaining_clients < num_x then - cur_num_x = remaining_clients - end - - -- Iterate in reversed order. - for i = #cls,1,-1 do - -- Get x and y position. - local c = cls[i] - local this_x = cur_num_x - at_x - 1 - local this_y = num_y - at_y - 1 - - -- Calculate geometry. - local g = {} - if this_x == (num_x - 1) then - g.width = wa.width - (num_x - 1)*width - else - g.width = width - end - - if this_y == (num_y - 1) then - g.height = wa.height - (num_y - 1)*height - else - g.height = height - end - - g.x = wa.x + this_x*width - g.y = wa.y + this_y*height - - if g.width < 1 then g.width = 1 end - if g.height < 1 then g.height = 1 end - - p.geometries[c] = g - - remaining_clients = remaining_clients - 1 - - -- Next grid position. - at_x = at_x + 1 - if at_x == num_x then - -- Row full, create a new one above it. - at_x = 0 - at_y = at_y + 1 - - -- We start a new row. Left-align. - if remaining_clients < num_x then - cur_num_x = remaining_clients - end - end - end - elseif orientation == "center" then - -- Layout with fixed number of vertical columns (read from nmaster). - -- Cols are centerded until there is nmaster columns, then windows - -- are stacked in the slave columns, with at most ncol clients per - -- column if possible. - - -- with nmaster=3 and ncol=1 you'll have - -- (1) (2) (3) - -- +---+---+---+ +-+---+---+-+ +---+---+---+ - -- | | | | | | | | | | | | | - -- | | 1 | | -> | | 1 | 2 | | -> | 1 | 2 | 3 | -> - -- | | | | | | | | | | | | | - -- +---+---+---+ +-+---+---+-+ +---+---+---+ - - -- (4) (5) - -- +---+---+---+ +---+---+---+ - -- | | | 3 | | | 2 | 4 | - -- + 1 + 2 +---+ -> + 1 +---+---+ - -- | | | 4 | | | 3 | 5 | - -- +---+---+---+ +---+---+---+ - - -- How many vertical columns? Read from nmaster on the tag. - local num_x = tonumber(termfair.center.nmaster) or t.master_count - local ncol = tonumber(termfair.center.ncol) or t.column_count - - if num_x <= 2 then num_x = 2 end - if ncol <= 1 then ncol = 1 end - - local width = math.floor(wa.width / num_x) - - if #cls < num_x then - -- Less clients than the number of columns, let's center it! - local offset_x = wa.x + (wa.width - #cls*width) / 2 - for i = 1, #cls do - local g = { y = wa.y } - g.width = width - g.height = wa.height - if g.width < 1 then g.width = 1 end - if g.height < 1 then g.height = 1 end - g.x = offset_x + (i - 1) * width - p.geometries[cls[i]] = g - end - else - -- More clients than the number of columns, let's arrange it! - -- Master client deserves a special treatement - local g = {} - g.width = wa.width - (num_x - 1)*width - g.height = wa.height - if g.width < 1 then g.width = 1 end - if g.height < 1 then g.height = 1 end - g.x = wa.x - g.y = wa.y - p.geometries[cls[1]] = g - - -- Treat the other clients - - -- Compute distribution of clients among columns - local num_y = {} - local remaining_clients = #cls-1 - local ncol_min = math.ceil(remaining_clients/(num_x-1)) - - if ncol >= ncol_min then - for i = (num_x-1), 1, -1 do - if (remaining_clients-i+1) < ncol then - num_y[i] = remaining_clients-i + 1 - else - num_y[i] = ncol - end - remaining_clients = remaining_clients - num_y[i] - end - else - local rem = remaining_clients % (num_x-1) - if rem == 0 then - for i = 1, num_x-1 do - num_y[i] = ncol_min - end - else - for i = 1, num_x-1 do - num_y[i] = ncol_min - 1 - end - for i = 0, rem-1 do - num_y[num_x-1-i] = num_y[num_x-1-i] + 1 - end - end - end - - -- Compute geometry of the other clients - local nclient = 2 -- we start with the 2nd client - local wx = g.x + g.width - for i = 1, (num_x-1) do - local height = math.floor(wa.height / num_y[i]) - local wy = wa.y - for j = 0, (num_y[i]-2) do - local g = {} - g.x = wx - g.y = wy - g.height = height - g.width = width - if g.width < 1 then g.width = 1 end - if g.height < 1 then g.height = 1 end - p.geometries[cls[nclient]] = g - nclient = nclient + 1 - wy = wy + height - end - local g = {} - g.x = wx - g.y = wy - g.height = wa.height - (num_y[i] - 1)*height - g.width = width - if g.width < 1 then g.width = 1 end - if g.height < 1 then g.height = 1 end - p.geometries[cls[nclient]] = g - nclient = nclient + 1 - wx = wx + width - end - end - end -end - -function termfair.center.arrange(p) - return do_fair(p, "center") -end - -function termfair.arrange(p) - return do_fair(p, "west") -end - -return termfair diff --git a/awesome/.config/awesome/lain/util/dkjson.lua b/awesome/.config/awesome/lain/util/dkjson.lua deleted file mode 100755 index 89aa2e1..0000000 --- a/awesome/.config/awesome/lain/util/dkjson.lua +++ /dev/null @@ -1,713 +0,0 @@ --- Module options: -local always_try_using_lpeg = true -local register_global_module_table = false -local global_module_name = 'json' - ---[==[ - -David Kolf's JSON module for Lua 5.1/5.2 - -Version 2.5 - - -For the documentation see the corresponding readme.txt or visit -. - -You can contact the author by sending an e-mail to 'david' at the -domain 'dkolf.de'. - - -Copyright (C) 2010-2013 David Heiko Kolf - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ---]==] - --- global dependencies: -local pairs, type, tostring, tonumber, getmetatable, setmetatable, rawset = - pairs, type, tostring, tonumber, getmetatable, setmetatable, rawset -local error, require, pcall, select = error, require, pcall, select -local floor, huge = math.floor, math.huge -local strrep, gsub, strsub, strbyte, strchar, strfind, strlen, strformat = - string.rep, string.gsub, string.sub, string.byte, string.char, - string.find, string.len, string.format -local strmatch = string.match -local concat = table.concat - -local json = { version = "dkjson 2.5" } - -if register_global_module_table then - _G[global_module_name] = json -end - -local _ENV = nil -- blocking globals in Lua 5.2 - -pcall (function() - -- Enable access to blocked metatables. - -- Don't worry, this module doesn't change anything in them. - local debmeta = require "debug".getmetatable - if debmeta then getmetatable = debmeta end -end) - -json.null = setmetatable ({}, { - __tojson = function () return "null" end -}) - -local function isarray (tbl) - local max, n, arraylen = 0, 0, 0 - for k,v in pairs (tbl) do - if k == 'n' and type(v) == 'number' then - arraylen = v - if v > max then - max = v - end - else - if type(k) ~= 'number' or k < 1 or floor(k) ~= k then - return false - end - if k > max then - max = k - end - n = n + 1 - end - end - if max > 10 and max > arraylen and max > n * 2 then - return false -- don't create an array with too many holes - end - return true, max -end - -local escapecodes = { - ["\""] = "\\\"", ["\\"] = "\\\\", ["\b"] = "\\b", ["\f"] = "\\f", - ["\n"] = "\\n", ["\r"] = "\\r", ["\t"] = "\\t" -} - -local function escapeutf8 (uchar) - local value = escapecodes[uchar] - if value then - return value - end - local a, b, c, d = strbyte (uchar, 1, 4) - a, b, c, d = a or 0, b or 0, c or 0, d or 0 - if a <= 0x7f then - value = a - elseif 0xc0 <= a and a <= 0xdf and b >= 0x80 then - value = (a - 0xc0) * 0x40 + b - 0x80 - elseif 0xe0 <= a and a <= 0xef and b >= 0x80 and c >= 0x80 then - value = ((a - 0xe0) * 0x40 + b - 0x80) * 0x40 + c - 0x80 - elseif 0xf0 <= a and a <= 0xf7 and b >= 0x80 and c >= 0x80 and d >= 0x80 then - value = (((a - 0xf0) * 0x40 + b - 0x80) * 0x40 + c - 0x80) * 0x40 + d - 0x80 - else - return "" - end - if value <= 0xffff then - return strformat ("\\u%.4x", value) - elseif value <= 0x10ffff then - -- encode as UTF-16 surrogate pair - value = value - 0x10000 - local highsur, lowsur = 0xD800 + floor (value/0x400), 0xDC00 + (value % 0x400) - return strformat ("\\u%.4x\\u%.4x", highsur, lowsur) - else - return "" - end -end - -local function fsub (str, pattern, repl) - -- gsub always builds a new string in a buffer, even when no match - -- exists. First using find should be more efficient when most strings - -- don't contain the pattern. - if strfind (str, pattern) then - return gsub (str, pattern, repl) - else - return str - end -end - -local function quotestring (value) - -- based on the regexp "escapable" in https://github.com/douglascrockford/JSON-js - value = fsub (value, "[%z\1-\31\"\\\127]", escapeutf8) - if strfind (value, "[\194\216\220\225\226\239]") then - value = fsub (value, "\194[\128-\159\173]", escapeutf8) - value = fsub (value, "\216[\128-\132]", escapeutf8) - value = fsub (value, "\220\143", escapeutf8) - value = fsub (value, "\225\158[\180\181]", escapeutf8) - value = fsub (value, "\226\128[\140-\143\168-\175]", escapeutf8) - value = fsub (value, "\226\129[\160-\175]", escapeutf8) - value = fsub (value, "\239\187\191", escapeutf8) - value = fsub (value, "\239\191[\176-\191]", escapeutf8) - end - return "\"" .. value .. "\"" -end -json.quotestring = quotestring - -local function replace(str, o, n) - local i, j = strfind (str, o, 1, true) - if i then - return strsub(str, 1, i-1) .. n .. strsub(str, j+1, -1) - else - return str - end -end - --- locale independent num2str and str2num functions -local decpoint, numfilter - -local function updatedecpoint () - decpoint = strmatch(tostring(0.5), "([^05+])") - -- build a filter that can be used to remove group separators - numfilter = "[^0-9%-%+eE" .. gsub(decpoint, "[%^%$%(%)%%%.%[%]%*%+%-%?]", "%%%0") .. "]+" -end - -updatedecpoint() - -local function num2str (num) - return replace(fsub(tostring(num), numfilter, ""), decpoint, ".") -end - -local function str2num (str) - local num = tonumber(replace(str, ".", decpoint)) - if not num then - updatedecpoint() - num = tonumber(replace(str, ".", decpoint)) - end - return num -end - -local function addnewline2 (level, buffer, buflen) - buffer[buflen+1] = "\n" - buffer[buflen+2] = strrep (" ", level) - buflen = buflen + 2 - return buflen -end - -function json.addnewline (state) - if state.indent then - state.bufferlen = addnewline2 (state.level or 0, - state.buffer, state.bufferlen or #(state.buffer)) - end -end - -local encode2 -- forward declaration - -local function addpair (key, value, prev, indent, level, buffer, buflen, tables, globalorder, state) - local kt = type (key) - if kt ~= 'string' and kt ~= 'number' then - return nil, "type '" .. kt .. "' is not supported as a key by JSON." - end - if prev then - buflen = buflen + 1 - buffer[buflen] = "," - end - if indent then - buflen = addnewline2 (level, buffer, buflen) - end - buffer[buflen+1] = quotestring (key) - buffer[buflen+2] = ":" - return encode2 (value, indent, level, buffer, buflen + 2, tables, globalorder, state) -end - -local function appendcustom(res, buffer, state) - local buflen = state.bufferlen - if type (res) == 'string' then - buflen = buflen + 1 - buffer[buflen] = res - end - return buflen -end - -local function exception(reason, value, state, buffer, buflen, defaultmessage) - defaultmessage = defaultmessage or reason - local handler = state.exception - if not handler then - return nil, defaultmessage - else - state.bufferlen = buflen - local ret, msg = handler (reason, value, state, defaultmessage) - if not ret then return nil, msg or defaultmessage end - return appendcustom(ret, buffer, state) - end -end - -function json.encodeexception(reason, value, state, defaultmessage) - return quotestring("<" .. defaultmessage .. ">") -end - -encode2 = function (value, indent, level, buffer, buflen, tables, globalorder, state) - local valtype = type (value) - local valmeta = getmetatable (value) - valmeta = type (valmeta) == 'table' and valmeta -- only tables - local valtojson = valmeta and valmeta.__tojson - if valtojson then - if tables[value] then - return exception('reference cycle', value, state, buffer, buflen) - end - tables[value] = true - state.bufferlen = buflen - local ret, msg = valtojson (value, state) - if not ret then return exception('custom encoder failed', value, state, buffer, buflen, msg) end - tables[value] = nil - buflen = appendcustom(ret, buffer, state) - elseif value == nil then - buflen = buflen + 1 - buffer[buflen] = "null" - elseif valtype == 'number' then - local s - if value ~= value or value >= huge or -value >= huge then - -- This is the behaviour of the original JSON implementation. - s = "null" - else - s = num2str (value) - end - buflen = buflen + 1 - buffer[buflen] = s - elseif valtype == 'boolean' then - buflen = buflen + 1 - buffer[buflen] = value and "true" or "false" - elseif valtype == 'string' then - buflen = buflen + 1 - buffer[buflen] = quotestring (value) - elseif valtype == 'table' then - if tables[value] then - return exception('reference cycle', value, state, buffer, buflen) - end - tables[value] = true - level = level + 1 - local isa, n = isarray (value) - if n == 0 and valmeta and valmeta.__jsontype == 'object' then - isa = false - end - local msg - if isa then -- JSON array - buflen = buflen + 1 - buffer[buflen] = "[" - for i = 1, n do - buflen, msg = encode2 (value[i], indent, level, buffer, buflen, tables, globalorder, state) - if not buflen then return nil, msg end - if i < n then - buflen = buflen + 1 - buffer[buflen] = "," - end - end - buflen = buflen + 1 - buffer[buflen] = "]" - else -- JSON object - local prev = false - buflen = buflen + 1 - buffer[buflen] = "{" - local order = valmeta and valmeta.__jsonorder or globalorder - if order then - local used = {} - n = #order - for i = 1, n do - local k = order[i] - local v = value[k] - if v then - used[k] = true - buflen, msg = addpair (k, v, prev, indent, level, buffer, buflen, tables, globalorder, state) - prev = true -- add a seperator before the next element - end - end - for k,v in pairs (value) do - if not used[k] then - buflen, msg = addpair (k, v, prev, indent, level, buffer, buflen, tables, globalorder, state) - if not buflen then return nil, msg end - prev = true -- add a seperator before the next element - end - end - else -- unordered - for k,v in pairs (value) do - buflen, msg = addpair (k, v, prev, indent, level, buffer, buflen, tables, globalorder, state) - if not buflen then return nil, msg end - prev = true -- add a seperator before the next element - end - end - if indent then - buflen = addnewline2 (level - 1, buffer, buflen) - end - buflen = buflen + 1 - buffer[buflen] = "}" - end - tables[value] = nil - else - return exception ('unsupported type', value, state, buffer, buflen, - "type '" .. valtype .. "' is not supported by JSON.") - end - return buflen -end - -function json.encode (value, state) - state = state or {} - local oldbuffer = state.buffer - local buffer = oldbuffer or {} - state.buffer = buffer - updatedecpoint() - local ret, msg = encode2 (value, state.indent, state.level or 0, - buffer, state.bufferlen or 0, state.tables or {}, state.keyorder, state) - if not ret then - error (msg, 2) - elseif oldbuffer == buffer then - state.bufferlen = ret - return true - else - state.bufferlen = nil - state.buffer = nil - return concat (buffer) - end -end - -local function loc (str, where) - local line, pos, linepos = 1, 1, 0 - while true do - pos = strfind (str, "\n", pos, true) - if pos and pos < where then - line = line + 1 - linepos = pos - pos = pos + 1 - else - break - end - end - return "line " .. line .. ", column " .. (where - linepos) -end - -local function unterminated (str, what, where) - return nil, strlen (str) + 1, "unterminated " .. what .. " at " .. loc (str, where) -end - -local function scanwhite (str, pos) - while true do - pos = strfind (str, "%S", pos) - if not pos then return nil end - local sub2 = strsub (str, pos, pos + 1) - if sub2 == "\239\187" and strsub (str, pos + 2, pos + 2) == "\191" then - -- UTF-8 Byte Order Mark - pos = pos + 3 - elseif sub2 == "//" then - pos = strfind (str, "[\n\r]", pos + 2) - if not pos then return nil end - elseif sub2 == "/*" then - pos = strfind (str, "*/", pos + 2) - if not pos then return nil end - pos = pos + 2 - else - return pos - end - end -end - -local escapechars = { - ["\""] = "\"", ["\\"] = "\\", ["/"] = "/", ["b"] = "\b", ["f"] = "\f", - ["n"] = "\n", ["r"] = "\r", ["t"] = "\t" -} - -local function unichar (value) - if value < 0 then - return nil - elseif value <= 0x007f then - return strchar (value) - elseif value <= 0x07ff then - return strchar (0xc0 + floor(value/0x40), - 0x80 + (floor(value) % 0x40)) - elseif value <= 0xffff then - return strchar (0xe0 + floor(value/0x1000), - 0x80 + (floor(value/0x40) % 0x40), - 0x80 + (floor(value) % 0x40)) - elseif value <= 0x10ffff then - return strchar (0xf0 + floor(value/0x40000), - 0x80 + (floor(value/0x1000) % 0x40), - 0x80 + (floor(value/0x40) % 0x40), - 0x80 + (floor(value) % 0x40)) - else - return nil - end -end - -local function scanstring (str, pos) - local lastpos = pos + 1 - local buffer, n = {}, 0 - while true do - local nextpos = strfind (str, "[\"\\]", lastpos) - if not nextpos then - return unterminated (str, "string", pos) - end - if nextpos > lastpos then - n = n + 1 - buffer[n] = strsub (str, lastpos, nextpos - 1) - end - if strsub (str, nextpos, nextpos) == "\"" then - lastpos = nextpos + 1 - break - else - local escchar = strsub (str, nextpos + 1, nextpos + 1) - local value - if escchar == "u" then - value = tonumber (strsub (str, nextpos + 2, nextpos + 5), 16) - if value then - local value2 - if 0xD800 <= value and value <= 0xDBff then - -- we have the high surrogate of UTF-16. Check if there is a - -- low surrogate escaped nearby to combine them. - if strsub (str, nextpos + 6, nextpos + 7) == "\\u" then - value2 = tonumber (strsub (str, nextpos + 8, nextpos + 11), 16) - if value2 and 0xDC00 <= value2 and value2 <= 0xDFFF then - value = (value - 0xD800) * 0x400 + (value2 - 0xDC00) + 0x10000 - else - value2 = nil -- in case it was out of range for a low surrogate - end - end - end - value = value and unichar (value) - if value then - if value2 then - lastpos = nextpos + 12 - else - lastpos = nextpos + 6 - end - end - end - end - if not value then - value = escapechars[escchar] or escchar - lastpos = nextpos + 2 - end - n = n + 1 - buffer[n] = value - end - end - if n == 1 then - return buffer[1], lastpos - elseif n > 1 then - return concat (buffer), lastpos - else - return "", lastpos - end -end - -local scanvalue -- forward declaration - -local function scantable (what, closechar, str, startpos, nullval, objectmeta, arraymeta) - local len = strlen (str) - local tbl, n = {}, 0 - local pos = startpos + 1 - if what == 'object' then - setmetatable (tbl, objectmeta) - else - setmetatable (tbl, arraymeta) - end - while true do - pos = scanwhite (str, pos) - if not pos then return unterminated (str, what, startpos) end - local char = strsub (str, pos, pos) - if char == closechar then - return tbl, pos + 1 - end - local val1, err - val1, pos, err = scanvalue (str, pos, nullval, objectmeta, arraymeta) - if err then return nil, pos, err end - pos = scanwhite (str, pos) - if not pos then return unterminated (str, what, startpos) end - char = strsub (str, pos, pos) - if char == ":" then - if val1 == nil then - return nil, pos, "cannot use nil as table index (at " .. loc (str, pos) .. ")" - end - pos = scanwhite (str, pos + 1) - if not pos then return unterminated (str, what, startpos) end - local val2 - val2, pos, err = scanvalue (str, pos, nullval, objectmeta, arraymeta) - if err then return nil, pos, err end - tbl[val1] = val2 - pos = scanwhite (str, pos) - if not pos then return unterminated (str, what, startpos) end - char = strsub (str, pos, pos) - else - n = n + 1 - tbl[n] = val1 - end - if char == "," then - pos = pos + 1 - end - end -end - -scanvalue = function (str, pos, nullval, objectmeta, arraymeta) - pos = pos or 1 - pos = scanwhite (str, pos) - if not pos then - return nil, strlen (str) + 1, "no valid JSON value (reached the end)" - end - local char = strsub (str, pos, pos) - if char == "{" then - return scantable ('object', "}", str, pos, nullval, objectmeta, arraymeta) - elseif char == "[" then - return scantable ('array', "]", str, pos, nullval, objectmeta, arraymeta) - elseif char == "\"" then - return scanstring (str, pos) - else - local pstart, pend = strfind (str, "^%-?[%d%.]+[eE]?[%+%-]?%d*", pos) - if pstart then - local number = str2num (strsub (str, pstart, pend)) - if number then - return number, pend + 1 - end - end - pstart, pend = strfind (str, "^%a%w*", pos) - if pstart then - local name = strsub (str, pstart, pend) - if name == "true" then - return true, pend + 1 - elseif name == "false" then - return false, pend + 1 - elseif name == "null" then - return nullval, pend + 1 - end - end - return nil, pos, "no valid JSON value at " .. loc (str, pos) - end -end - -local function optionalmetatables(...) - if select("#", ...) > 0 then - return ... - else - return {__jsontype = 'object'}, {__jsontype = 'array'} - end -end - -function json.decode (str, pos, nullval, ...) - local objectmeta, arraymeta = optionalmetatables(...) - return scanvalue (str, pos, nullval, objectmeta, arraymeta) -end - -function json.use_lpeg () - local g = require ("lpeg") - - if g.version() == "0.11" then - error "due to a bug in LPeg 0.11, it cannot be used for JSON matching" - end - - local pegmatch = g.match - local P, S, R = g.P, g.S, g.R - - local function ErrorCall (str, pos, msg, state) - if not state.msg then - state.msg = msg .. " at " .. loc (str, pos) - state.pos = pos - end - return false - end - - local function Err (msg) - return g.Cmt (g.Cc (msg) * g.Carg (2), ErrorCall) - end - - local SingleLineComment = P"//" * (1 - S"\n\r")^0 - local MultiLineComment = P"/*" * (1 - P"*/")^0 * P"*/" - local Space = (S" \n\r\t" + P"\239\187\191" + SingleLineComment + MultiLineComment)^0 - - local PlainChar = 1 - S"\"\\\n\r" - local EscapeSequence = (P"\\" * g.C (S"\"\\/bfnrt" + Err "unsupported escape sequence")) / escapechars - local HexDigit = R("09", "af", "AF") - local function UTF16Surrogate (match, pos, high, low) - high, low = tonumber (high, 16), tonumber (low, 16) - if 0xD800 <= high and high <= 0xDBff and 0xDC00 <= low and low <= 0xDFFF then - return true, unichar ((high - 0xD800) * 0x400 + (low - 0xDC00) + 0x10000) - else - return false - end - end - local function UTF16BMP (hex) - return unichar (tonumber (hex, 16)) - end - local U16Sequence = (P"\\u" * g.C (HexDigit * HexDigit * HexDigit * HexDigit)) - local UnicodeEscape = g.Cmt (U16Sequence * U16Sequence, UTF16Surrogate) + U16Sequence/UTF16BMP - local Char = UnicodeEscape + EscapeSequence + PlainChar - local String = P"\"" * g.Cs (Char ^ 0) * (P"\"" + Err "unterminated string") - local Integer = P"-"^(-1) * (P"0" + (R"19" * R"09"^0)) - local Fractal = P"." * R"09"^0 - local Exponent = (S"eE") * (S"+-")^(-1) * R"09"^1 - local Number = (Integer * Fractal^(-1) * Exponent^(-1))/str2num - local Constant = P"true" * g.Cc (true) + P"false" * g.Cc (false) + P"null" * g.Carg (1) - local SimpleValue = Number + String + Constant - local ArrayContent, ObjectContent - - -- The functions parsearray and parseobject parse only a single value/pair - -- at a time and store them directly to avoid hitting the LPeg limits. - local function parsearray (str, pos, nullval, state) - local obj, cont - local npos - local t, nt = {}, 0 - repeat - obj, cont, npos = pegmatch (ArrayContent, str, pos, nullval, state) - if not npos then break end - pos = npos - nt = nt + 1 - t[nt] = obj - until cont == 'last' - return pos, setmetatable (t, state.arraymeta) - end - - local function parseobject (str, pos, nullval, state) - local obj, key, cont - local npos - local t = {} - repeat - key, obj, cont, npos = pegmatch (ObjectContent, str, pos, nullval, state) - if not npos then break end - pos = npos - t[key] = obj - until cont == 'last' - return pos, setmetatable (t, state.objectmeta) - end - - local Array = P"[" * g.Cmt (g.Carg(1) * g.Carg(2), parsearray) * Space * (P"]" + Err "']' expected") - local Object = P"{" * g.Cmt (g.Carg(1) * g.Carg(2), parseobject) * Space * (P"}" + Err "'}' expected") - local Value = Space * (Array + Object + SimpleValue) - local ExpectedValue = Value + Space * Err "value expected" - ArrayContent = Value * Space * (P"," * g.Cc'cont' + g.Cc'last') * g.Cp() - local Pair = g.Cg (Space * String * Space * (P":" + Err "colon expected") * ExpectedValue) - ObjectContent = Pair * Space * (P"," * g.Cc'cont' + g.Cc'last') * g.Cp() - local DecodeValue = ExpectedValue * g.Cp () - - function json.decode (str, pos, nullval, ...) - local state = {} - state.objectmeta, state.arraymeta = optionalmetatables(...) - local obj, retpos = pegmatch (DecodeValue, str, pos, nullval, state) - if state.msg then - return nil, state.pos, state.msg - else - return obj, retpos - end - end - - -- use this function only once: - json.use_lpeg = function () return json end - - json.using_lpeg = true - - return json -- so you can get the module using json = require "dkjson".use_lpeg() -end - -if always_try_using_lpeg then - pcall (json.use_lpeg) -end - -return json diff --git a/awesome/.config/awesome/lain/util/init.lua b/awesome/.config/awesome/lain/util/init.lua deleted file mode 100755 index 55bfa26..0000000 --- a/awesome/.config/awesome/lain/util/init.lua +++ /dev/null @@ -1,168 +0,0 @@ ---[[ - - Lain - Layouts, widgets and utilities for Awesome WM - - Utilities section - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local awful = require("awful") -local sqrt = math.sqrt -local pairs = pairs -local client = client -local tonumber = tonumber -local wrequire = require("lain.helpers").wrequire -local setmetatable = setmetatable - --- Lain utilities submodule --- lain.util -local util = { _NAME = "lain.util" } - --- Like awful.menu.clients, but only show clients of currently selected tags -function util.menu_clients_current_tags(menu, args) - -- List of currently selected tags. - local cls_tags = awful.screen.focused().selected_tags - - if cls_tags == nil then return nil end - - -- Final list of menu items. - local cls_t = {} - - -- For each selected tag get all clients of that tag and add them to - -- the menu. A click on a menu item will raise that client. - for i = 1,#cls_tags do - local t = cls_tags[i] - local cls = t:clients() - - for k, c in pairs(cls) do - cls_t[#cls_t + 1] = { awful.util.escape(c.name) or "", - function () - c.minimized = false - client.focus = c - c:raise() - end, - c.icon } - end - end - - -- No clients? Then quit. - if #cls_t <= 0 then return nil end - - -- menu may contain some predefined values, otherwise start with a - -- fresh menu. - if not menu then menu = {} end - - -- Set the list of items and show the menu. - menu.items = cls_t - local m = awful.menu(menu) - m:show(args) - - return m -end - --- Magnify a client: set it to "float" and resize it. -function util.magnify_client(c, width_f, height_f) - if c and not c.floating then - util.magnified_client = c - util.mc(c, width_f, height_f) - else - util.magnified_client = nil - c.floating = false - end -end - --- https://github.com/lcpz/lain/issues/195 -function util.mc(c, width_f, height_f) - c = c or util.magnified_client - if not c then return end - - c.floating = true - local s = awful.screen.focused() - local mg = s.workarea - local g = {} - local mwfact = width_f or s.selected_tag.master_width_factor or 0.5 - g.width = sqrt(mwfact) * mg.width - g.height = sqrt(height_f or mwfact) * mg.height - g.x = mg.x + (mg.width - g.width) / 2 - g.y = mg.y + (mg.height - g.height) / 2 - - if c then c:geometry(g) end -- if c is still a valid object -end - --- Non-empty tag browsing --- direction in {-1, 1} <-> {previous, next} non-empty tag -function util.tag_view_nonempty(direction, sc) - local s = sc or awful.screen.focused() - - for i = 1, #s.tags do - awful.tag.viewidx(direction, s) - if #s.clients > 0 then - return - end - end -end - --- {{{ Dynamic tagging - --- Add a new tag -function util.add_tag(layout) - awful.prompt.run { - prompt = "New tag name: ", - textbox = awful.screen.focused().mypromptbox.widget, - exe_callback = function(name) - if not name or #name == 0 then return end - awful.tag.add(name, { screen = awful.screen.focused(), layout = layout or awful.layout.suit.tile }):view_only() - end - } -end - --- Rename current tag -function util.rename_tag() - awful.prompt.run { - prompt = "Rename tag: ", - textbox = awful.screen.focused().mypromptbox.widget, - exe_callback = function(new_name) - if not new_name or #new_name == 0 then return end - local t = awful.screen.focused().selected_tag - if t then - t.name = new_name - end - end - } -end - --- Move current tag --- pos in {-1, 1} <-> {previous, next} tag position -function util.move_tag(pos) - local tag = awful.screen.focused().selected_tag - if tonumber(pos) <= -1 then - awful.tag.move(tag.index - 1, tag) - else - awful.tag.move(tag.index + 1, tag) - end -end - --- Delete current tag --- Any rule set on the tag shall be broken -function util.delete_tag() - local t = awful.screen.focused().selected_tag - if not t then return end - t:delete() -end - --- }}} - --- On the fly useless gaps change -function util.useless_gaps_resize(thatmuch, s, t) - local scr = s or awful.screen.focused() - local tag = t or scr.selected_tag - tag.gap = tag.gap + tonumber(thatmuch) - awful.layout.arrange(scr) -end - -return setmetatable(util, { __index = wrequire }) diff --git a/awesome/.config/awesome/lain/util/markup.lua b/awesome/.config/awesome/lain/util/markup.lua deleted file mode 100755 index 63f9486..0000000 --- a/awesome/.config/awesome/lain/util/markup.lua +++ /dev/null @@ -1,66 +0,0 @@ ---[[ - - Licensed under MIT License - * (c) 2013, Luca CPZ - * (c) 2009, Uli Schlachter - * (c) 2009, Majic - ---]] - -local format = string.format -local setmetatable = setmetatable - --- Lain markup util submodule --- lain.util.markup -local markup = { fg = {}, bg = {} } - --- Convenience tags -function markup.bold(text) return format("%s", text) end -function markup.italic(text) return format("%s", text) end -function markup.strike(text) return format("%s", text) end -function markup.underline(text) return format("%s", text) end -function markup.monospace(text) return format("%s", text) end -function markup.big(text) return format("%s", text) end -function markup.small(text) return format("%s", text) end - --- Set the font -function markup.font(font, text) - return format("%s", font, text) -end - --- Set the foreground -function markup.fg.color(color, text) - return format("%s", color, text) -end - --- Set the background -function markup.bg.color(color, text) - return format("%s", color, text) -end - --- Set foreground and background -function markup.color(fg, bg, text) - return format("%s", fg, bg, text) -end - --- Set font and foreground -function markup.fontfg(font, fg, text) - return format("%s", font, fg, text) -end - --- Set font and background -function markup.fontbg(font, bg, text) - return format("%s", font, bg, text) -end - --- Set font, foreground and background -function markup.fontcolor(font, fg, bg, text) - return format("%s", font, fg, bg, text) -end - --- link markup.{fg,bg}(...) calls to markup.{fg,bg}.color(...) -setmetatable(markup.fg, { __call = function(_, ...) return markup.fg.color(...) end }) -setmetatable(markup.bg, { __call = function(_, ...) return markup.bg.color(...) end }) - --- link markup(...) calls to markup.fg.color(...) -return setmetatable(markup, { __call = function(_, ...) return markup.fg.color(...) end }) diff --git a/awesome/.config/awesome/lain/util/menu_iterator.lua b/awesome/.config/awesome/lain/util/menu_iterator.lua deleted file mode 100755 index 9959b25..0000000 --- a/awesome/.config/awesome/lain/util/menu_iterator.lua +++ /dev/null @@ -1,145 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2017, Simon Désaulniers - * (c) 2017, Uli Schlachter - * (c) 2017, Jeferson Siqueira - ---]] - --- Menu iterator with Naughty notifications --- lain.util.menu_iterator - -local naughty = require("naughty") -local helpers = require("lain.helpers") -local util = require("lain.util") -local atable = require("awful.util").table -local assert = assert -local pairs = pairs -local tconcat = table.concat -local unpack = unpack or table.unpack -- lua 5.1 retro-compatibility - -local state = { cid = nil } - -local function naughty_destroy_callback(reason) - local closed = naughty.notificationClosedReason - if reason == closed.expired or reason == closed.dismissedByUser then - local actions = state.index and state.menu[state.index - 1][2] - if actions then - for _,action in pairs(actions) do - -- don't try to call nil callbacks - if action then action() end - end - state.index = nil - end - end -end - --- Iterates over a menu. --- After the timeout, callbacks associated to the last visited choice are --- executed. Inputs: --- * menu: a list of {label, {callbacks}} pairs --- * timeout: time to wait before confirming the menu selection --- * icon: icon to display in the notification of the chosen label -local function iterate(menu, timeout, icon) - local timeout = timeout or 4 -- default timeout for each menu entry - local icon = icon or nil -- icon to display on the menu - - -- Build the list of choices - if not state.index then - state.menu = menu - state.index = 1 - end - - -- Select one and display the appropriate notification - local label - local next = state.menu[state.index] - state.index = state.index + 1 - - if not next then - label = "Cancel" - state.index = nil - else - label, _ = unpack(next) - end - - state.cid = naughty.notify({ - text = label, - icon = icon, - timeout = timeout, - screen = mouse.screen, - replaces_id = state.cid, - destroy = naughty_destroy_callback - }).id -end - --- Generates a menu compatible with the first argument of `iterate` function and --- suitable for the following cases: --- * all possible choices individually (partition of singletons); --- * all possible subsets of the set of choices (powerset). --- --- Inputs: --- * args: an array containing the following members: --- * choices: Array of choices (string) on which the menu will be --- generated. --- * name: Displayed name of the menu (in the form "name: choices"). --- * selected_cb: Callback to execute for each selected choice. Takes --- the choice as a string argument. Can be `nil` (no action --- to execute). --- * rejected_cb: Callback to execute for each rejected choice (possible --- choices which are not selected). Takes the choice as a --- string argument. Can be `nil` (no action to execute). --- * extra_choices: An array of extra { choice_str, callback_fun } pairs to be --- added to the menu. Each callback_fun can be `nil`. --- * combination: The combination of choices to generate. Possible values: --- "powerset" and "single" (default). --- Output: --- * m: menu to be iterated over. -local function menu(args) - local choices = assert(args.choices or args[1]) - local name = assert(args.name or args[2]) - local selected_cb = args.selected_cb - local rejected_cb = args.rejected_cb - local extra_choices = args.extra_choices or {} - - local ch_combinations = args.combination == "powerset" and helpers.powerset(choices) or helpers.trivial_partition_set(choices) - - for _,c in pairs(extra_choices) do - ch_combinations = atable.join(ch_combinations, {{c[1]}}) - end - - local m = {} -- the menu - - for _,c in pairs(ch_combinations) do - if #c > 0 then - local cbs = {} - - -- selected choices - for _,ch in pairs(c) do - if atable.hasitem(choices, ch) then - cbs[#cbs + 1] = selected_cb and function() selected_cb(ch) end or nil - end - end - - -- rejected choices - for _,ch in pairs(choices) do - if not atable.hasitem(c, ch) and atable.hasitem(choices, ch) then - cbs[#cbs + 1] = rejected_cb and function() rejected_cb(ch) end or nil - end - end - - -- add user extra choices (like the choice "None" for example) - for _,x in pairs(extra_choices) do - if x[1] == c[1] then - cbs[#cbs + 1] = x[2] - end - end - - m[#m + 1] = { name .. ": " .. tconcat(c, " + "), cbs } - end - end - - return m -end - -return { iterate = iterate, menu = menu } diff --git a/awesome/.config/awesome/lain/util/quake.lua b/awesome/.config/awesome/lain/util/quake.lua deleted file mode 100755 index 01891b0..0000000 --- a/awesome/.config/awesome/lain/util/quake.lua +++ /dev/null @@ -1,168 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2016, Luca CPZ - * (c) 2015, unknown - ---]] - -local awful = require("awful") -local capi = { client = client } -local math = math -local string = string -local pairs = pairs -local screen = screen -local setmetatable = setmetatable - --- Quake-like Dropdown application spawn -local quake = {} - --- If you have a rule like "awful.client.setslave" for your terminals, --- ensure you use an exception for QuakeDD. Otherwise, you may --- run into problems with focus. - -function quake:display() - if self.followtag then self.screen = awful.screen.focused() end - - -- First, we locate the client - local client = nil - local i = 0 - for c in awful.client.iterate(function (c) - -- c.name may be changed! - return c.instance == self.name - end) - do - i = i + 1 - if i == 1 then - client = c - else - -- Additional matching clients, let's remove the sticky bit - -- which may persist between awesome restarts. We don't close - -- them as they may be valuable. They will just turn into - -- normal clients. - c.sticky = false - c.ontop = false - c.above = false - end - end - - if not client and not self.visible then return end - - if not client then - -- The client does not exist, we spawn it - cmd = string.format("%s %s %s", self.app, - string.format(self.argname, self.name), self.extra) - awful.spawn(cmd, { tag = self.screen.selected_tag }) - return - end - - -- Set geometry - client.floating = true - client.border_width = self.border - client.size_hints_honor = false - client:geometry(self.geometry[self.screen.index] or self:compute_size()) - - -- Set not sticky and on top - client.sticky = false - client.ontop = true - client.above = true - client.skip_taskbar = true - - -- Additional user settings - if self.settings then self.settings(client) end - - -- Toggle display - if self.visible then - client.hidden = false - client:raise() - self.last_tag = self.screen.selected_tag - client:tags({self.screen.selected_tag}) - capi.client.focus = client - else - client.hidden = true - local ctags = client:tags() - for i, t in pairs(ctags) do - ctags[i] = nil - end - client:tags(ctags) - end - - return client -end - -function quake:compute_size() - -- skip if we already have a geometry for this screen - if not self.geometry[self.screen.index] then - local geom - if not self.overlap then - geom = screen[self.screen.index].workarea - else - geom = screen[self.screen.index].geometry - end - local width, height = self.width, self.height - if width <= 1 then width = math.floor(geom.width * width) - 2 * self.border end - if height <= 1 then height = math.floor(geom.height * height) end - local x, y - if self.horiz == "left" then x = geom.x - elseif self.horiz == "right" then x = geom.width + geom.x - width - else x = geom.x + (geom.width - width)/2 end - if self.vert == "top" then y = geom.y - elseif self.vert == "bottom" then y = geom.height + geom.y - height - else y = geom.y + (geom.height - height)/2 end - self.geometry[self.screen.index] = { x = x, y = y, width = width, height = height } - end - return self.geometry[self.screen.index] -end - -function quake:new(config) - local conf = config or {} - - conf.app = conf.app or "xterm" -- application to spawn - conf.name = conf.name or "QuakeDD" -- window name - conf.argname = conf.argname or "-name %s" -- how to specify window name - conf.extra = conf.extra or "" -- extra arguments - conf.border = conf.border or 1 -- client border width - conf.visible = conf.visible or false -- initially not visible - conf.followtag = conf.followtag or false -- spawn on currently focused screen - conf.overlap = conf.overlap or false -- overlap wibox - conf.screen = conf.screen or awful.screen.focused() - conf.settings = conf.settings - - -- If width or height <= 1 this is a proportion of the workspace - conf.height = conf.height or 0.25 -- height - conf.width = conf.width or 1 -- width - conf.vert = conf.vert or "top" -- top, bottom or center - conf.horiz = conf.horiz or "left" -- left, right or center - conf.geometry = {} -- internal use - - local dropdown = setmetatable(conf, { __index = quake }) - - capi.client.connect_signal("manage", function(c) - if c.instance == dropdown.name and c.screen == dropdown.screen then - dropdown:display() - end - end) - capi.client.connect_signal("unmanage", function(c) - if c.instance == dropdown.name and c.screen == dropdown.screen then - dropdown.visible = false - end - end) - - return dropdown -end - -function quake:toggle() - if self.followtag then self.screen = awful.screen.focused() end - local current_tag = self.screen.selected_tag - if current_tag and self.last_tag ~= current_tag and self.visible then - local c=self:display() - if c then - c:move_to_tag(current_tag) - end - else - self.visible = not self.visible - self:display() - end -end - -return setmetatable(quake, { __call = function(_, ...) return quake:new(...) end }) diff --git a/awesome/.config/awesome/lain/util/separators.lua b/awesome/.config/awesome/lain/util/separators.lua deleted file mode 100755 index 465132d..0000000 --- a/awesome/.config/awesome/lain/util/separators.lua +++ /dev/null @@ -1,117 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2015, Luca CPZ - * (c) 2015, plotnikovanton - ---]] - -local wibox = require("wibox") -local gears = require("gears") - --- Lain Cairo separators util submodule --- lain.util.separators -local separators = { height = 0, width = 9 } - --- [[ Arrow - --- Right -function separators.arrow_right(col1, col2) - local widget = wibox.widget.base.make_widget() - widget.col1 = col1 - widget.col2 = col2 - - widget.fit = function(m, w, h) - return separators.width, separators.height - end - - widget.update = function(col1, col2) - widget.col1 = col1 - widget.col2 = col2 - widget:emit_signal("widget::redraw_needed") - end - - widget.draw = function(mycross, wibox, cr, width, height) - if widget.col2 ~= "alpha" then - cr:set_source_rgb(gears.color.parse_color(widget.col2)) - cr:new_path() - cr:move_to(0, 0) - cr:line_to(width, height/2) - cr:line_to(width, 0) - cr:close_path() - cr:fill() - - cr:new_path() - cr:move_to(0, height) - cr:line_to(width, height/2) - cr:line_to(width, height) - cr:close_path() - cr:fill() - end - - if widget.col1 ~= "alpha" then - cr:set_source_rgb(gears.color.parse_color(widget.col1)) - cr:new_path() - cr:move_to(0, 0) - cr:line_to(width, height/2) - cr:line_to(0, height) - cr:close_path() - cr:fill() - end - end - - return widget -end - --- Left -function separators.arrow_left(col1, col2) - local widget = wibox.widget.base.make_widget() - widget.col1 = col1 - widget.col2 = col2 - - widget.fit = function(m, w, h) - return separators.width, separators.height - end - - widget.update = function(col1, col2) - widget.col1 = col1 - widget.col2 = col2 - widget:emit_signal("widget::redraw_needed") - end - - widget.draw = function(mycross, wibox, cr, width, height) - if widget.col1 ~= "alpha" then - cr:set_source_rgb(gears.color.parse_color(widget.col1)) - cr:new_path() - cr:move_to(width, 0) - cr:line_to(0, height/2) - cr:line_to(0, 0) - cr:close_path() - cr:fill() - - cr:new_path() - cr:move_to(width, height) - cr:line_to(0, height/2) - cr:line_to(0, height) - cr:close_path() - cr:fill() - end - - if widget.col2 ~= "alpha" then - cr:new_path() - cr:move_to(width, 0) - cr:line_to(0, height/2) - cr:line_to(width, height) - cr:close_path() - - cr:set_source_rgb(gears.color.parse_color(widget.col2)) - cr:fill() - end - end - - return widget -end - --- ]] - -return separators diff --git a/awesome/.config/awesome/lain/widget/alsa.lua b/awesome/.config/awesome/lain/widget/alsa.lua deleted file mode 100755 index 3b6c6d6..0000000 --- a/awesome/.config/awesome/lain/widget/alsa.lua +++ /dev/null @@ -1,53 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010, Adrian C. - ---]] - -local helpers = require("lain.helpers") -local shell = require("awful.util").shell -local wibox = require("wibox") -local string = string - --- ALSA volume --- lain.widget.alsa - -local function factory(args) - local alsa = { widget = wibox.widget.textbox() } - local args = args or {} - local timeout = args.timeout or 5 - local settings = args.settings or function() end - - alsa.cmd = args.cmd or "amixer" - alsa.channel = args.channel or "Master" - alsa.togglechannel = args.togglechannel - - local format_cmd = string.format("%s get %s", alsa.cmd, alsa.channel) - - if alsa.togglechannel then - format_cmd = { shell, "-c", string.format("%s get %s; %s get %s", - alsa.cmd, alsa.channel, alsa.cmd, alsa.togglechannel) } - end - - alsa.last = {} - - function alsa.update() - helpers.async(format_cmd, function(mixer) - local l,s = string.match(mixer, "([%d]+)%%.*%[([%l]*)") - if alsa.last.level ~= l or alsa.last.status ~= s then - volume_now = { level = l, status = s } - widget = alsa.widget - settings() - alsa.last = volume_now - end - end) - end - - helpers.newtimer(string.format("alsa-%s-%s", alsa.cmd, alsa.channel), timeout, alsa.update) - - return alsa -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/alsabar.lua b/awesome/.config/awesome/lain/widget/alsabar.lua deleted file mode 100755 index b2f7b44..0000000 --- a/awesome/.config/awesome/lain/widget/alsabar.lua +++ /dev/null @@ -1,166 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2013, Rman - ---]] - -local helpers = require("lain.helpers") -local awful = require("awful") -local naughty = require("naughty") -local wibox = require("wibox") -local math = math -local string = string -local type = type -local tonumber = tonumber - --- ALSA volume bar --- lain.widget.alsabar - -local function factory(args) - local alsabar = { - colors = { - background = "#000000", - mute = "#EB8F8F", - unmute = "#A4CE8A" - }, - - _current_level = 0, - _playback = "off" - } - - local args = args or {} - local timeout = args.timeout or 5 - local settings = args.settings or function() end - local width = args.width or 63 - local height = args.height or 1 - local margins = args.margins or 1 - local paddings = args.paddings or 1 - local ticks = args.ticks or false - local ticks_size = args.ticks_size or 7 - local tick = args.tick or "|" - local tick_pre = args.tick_pre or "[" - local tick_post = args.tick_post or "]" - local tick_none = args.tick_none or " " - - alsabar.cmd = args.cmd or "amixer" - alsabar.channel = args.channel or "Master" - alsabar.togglechannel = args.togglechannel - alsabar.colors = args.colors or alsabar.colors - alsabar.followtag = args.followtag or false - alsabar.notification_preset = args.notification_preset - - if not alsabar.notification_preset then - alsabar.notification_preset = { font = "Monospace 10" } - end - - local format_cmd = string.format("%s get %s", alsabar.cmd, alsabar.channel) - - if alsabar.togglechannel then - format_cmd = { awful.util.shell, "-c", string.format("%s get %s; %s get %s", - alsabar.cmd, alsabar.channel, alsabar.cmd, alsabar.togglechannel) } - end - - alsabar.bar = wibox.widget { - color = alsabar.colors.unmute, - background_color = alsabar.colors.background, - forced_height = height, - forced_width = width, - margins = margins, - paddings = margins, - ticks = ticks, - ticks_size = ticks_size, - widget = wibox.widget.progressbar - } - - alsabar.tooltip = awful.tooltip({ objects = { alsabar.bar } }) - - function alsabar.update(callback) - helpers.async(format_cmd, function(mixer) - local vol, playback = string.match(mixer, "([%d]+)%%.*%[([%l]*)") - - if not vol or not playback then return end - - if vol ~= alsabar._current_level or playback ~= alsabar._playback then - alsabar._current_level = tonumber(vol) - alsabar.bar:set_value(alsabar._current_level / 100) - if alsabar._current_level == 0 or playback == "off" then - alsabar._playback = playback - alsabar.tooltip:set_text("[Muted]") - alsabar.bar.color = alsabar.colors.mute - else - alsabar._playback = "on" - alsabar.tooltip:set_text(string.format("%s: %s", alsabar.channel, vol)) - alsabar.bar.color = alsabar.colors.unmute - end - - volume_now = { - level = alsabar._current_level, - status = alsabar._playback - } - - settings() - - if type(callback) == "function" then callback() end - end - end) - end - - function alsabar.notify() - alsabar.update(function() - local preset = alsabar.notification_preset - - preset.title = string.format("%s - %s%%", alsabar.channel, alsabar._current_level) - - if alsabar._playback == "off" then - preset.title = preset.title .. " Muted" - end - - -- tot is the maximum number of ticks to display in the notification - local tot = alsabar.notification_preset.max_ticks - - if not tot then - local wib = awful.screen.focused().mywibox - -- if we can grab mywibox, tot is defined as its height if - -- horizontal, or width otherwise - if wib then - if wib.position == "left" or wib.position == "right" then - tot = wib.width - else - tot = wib.height - end - -- fallback: default horizontal wibox height - else - tot = 20 - end - end - - int = math.modf((alsabar._current_level / 100) * tot) - preset.text = string.format( - "%s%s%s%s", - tick_pre, - string.rep(tick, int), - string.rep(tick_none, tot - int), - tick_post - ) - - if alsabar.followtag then preset.screen = awful.screen.focused() end - - if not alsabar.notification then - alsabar.notification = naughty.notify { - preset = preset, - destroy = function() alsabar.notification = nil end - } - else - naughty.replace_text(alsabar.notification, preset.title, preset.text) - end - end) - end - - helpers.newtimer(string.format("alsabar-%s-%s", alsabar.cmd, alsabar.channel), timeout, alsabar.update) - - return alsabar -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/bat.lua b/awesome/.config/awesome/lain/widget/bat.lua deleted file mode 100755 index 3cb801c..0000000 --- a/awesome/.config/awesome/lain/widget/bat.lua +++ /dev/null @@ -1,217 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local helpers = require("lain.helpers") -local fs = require("gears.filesystem") -local naughty = require("naughty") -local wibox = require("wibox") -local math = math -local string = string -local ipairs = ipairs -local tonumber = tonumber - --- Battery infos --- lain.widget.bat - -local function factory(args) - local pspath = args.pspath or "/sys/class/power_supply/" - - if not fs.is_dir(pspath) then - naughty.notify { text = "lain.widget.bat: invalid power supply path", timeout = 0 } - return - end - - local bat = { widget = wibox.widget.textbox() } - local args = args or {} - local timeout = args.timeout or 30 - local notify = args.notify or "on" - local full_notify = args.full_notify or notify - local n_perc = args.n_perc or { 5, 15 } - local batteries = args.batteries or (args.battery and {args.battery}) or {} - local ac = args.ac or "AC0" - local settings = args.settings or function() end - - function bat.get_batteries() - helpers.line_callback("ls -1 " .. pspath, function(line) - local bstr = string.match(line, "BAT%w+") - if bstr then - batteries[#batteries + 1] = bstr - else - ac = string.match(line, "A%w+") or "AC0" - end - end) - end - - if #batteries == 0 then bat.get_batteries() end - - bat_notification_critical_preset = { - title = "Battery exhausted", - text = "Shutdown imminent", - timeout = 15, - fg = "#000000", - bg = "#FFFFFF" - } - - bat_notification_low_preset = { - title = "Battery low", - text = "Plug the cable!", - timeout = 15, - fg = "#202020", - bg = "#CDCDCD" - } - - bat_notification_charged_preset = { - title = "Battery full", - text = "You can unplug the cable", - timeout = 15, - fg = "#202020", - bg = "#CDCDCD" - } - - bat_now = { - status = "N/A", - ac_status = "N/A", - perc = "N/A", - time = "N/A", - watt = "N/A" - } - - bat_now.n_status = {} - bat_now.n_perc = {} - for i = 1, #batteries do - bat_now.n_status[i] = "N/A" - bat_now.n_perc[i] = 0 - end - - -- used to notify full charge only once before discharging - local fullnotification = false - - function bat.update() - local sum_rate_current = 0 - local sum_rate_voltage = 0 - local sum_rate_power = 0 - local sum_rate_energy = 0 - local sum_energy_now = 0 - local sum_energy_full = 0 - - for i, battery in ipairs(batteries) do - local bstr = pspath .. battery - local present = helpers.first_line(bstr .. "/present") - - if tonumber(present) == 1 then - -- current_now(I)[uA], voltage_now(U)[uV], power_now(P)[uW] - local rate_current = tonumber(helpers.first_line(bstr .. "/current_now")) - local rate_voltage = tonumber(helpers.first_line(bstr .. "/voltage_now")) - local rate_power = tonumber(helpers.first_line(bstr .. "/power_now")) - - -- energy_now(P)[uWh], charge_now(I)[uAh] - local energy_now = tonumber(helpers.first_line(bstr .. "/energy_now") or - helpers.first_line(bstr .. "/charge_now")) - - -- energy_full(P)[uWh], charge_full(I)[uAh] - local energy_full = tonumber(helpers.first_line(bstr .. "/energy_full") or - helpers.first_line(bstr .. "/charge_full")) - - local energy_percentage = tonumber(helpers.first_line(bstr .. "/capacity")) or - math.floor((energy_now / energy_full) * 100) - - bat_now.n_status[i] = helpers.first_line(bstr .. "/status") or "N/A" - bat_now.n_perc[i] = energy_percentage or bat_now.n_perc[i] - - sum_rate_current = sum_rate_current + (rate_current or 0) - sum_rate_voltage = sum_rate_voltage + (rate_voltage or 0) - sum_rate_power = sum_rate_power + (rate_power or 0) - sum_rate_energy = sum_rate_energy + (rate_power or (((rate_voltage or 0) * (rate_current or 0)) / 1e6)) - sum_energy_now = sum_energy_now + (energy_now or 0) - sum_energy_full = sum_energy_full + (energy_full or 0) - end - end - - -- When one of the battery is charging, others' status are either - -- "Full", "Unknown" or "Charging". When the laptop is not plugged in, - -- one or more of the batteries may be full, but only one battery - -- discharging suffices to set global status to "Discharging". - bat_now.status = bat_now.n_status[1] - for _,status in ipairs(bat_now.n_status) do - if status == "Discharging" or status == "Charging" then - bat_now.status = status - end - end - bat_now.ac_status = tonumber(helpers.first_line(string.format("%s%s/online", pspath, ac))) or "N/A" - - if bat_now.status ~= "N/A" then - if bat_now.status ~= "Full" and sum_rate_power == 0 and bat_now.ac_status == 1 then - bat_now.perc = math.floor(math.min(100, (sum_energy_now / sum_energy_full) * 100)) - bat_now.time = "00:00" - bat_now.watt = 0 - - -- update {perc,time,watt} iff battery not full and rate > 0 - elseif bat_now.status ~= "Full" then - local rate_time = 0 - -- Calculate time and watt if rates are greater then 0 - if (sum_rate_power > 0 or sum_rate_current > 0) then - local div = (sum_rate_power > 0 and sum_rate_power) or sum_rate_current - - if bat_now.status == "Charging" then - rate_time = (sum_energy_full - sum_energy_now) / div - else -- Discharging - rate_time = sum_energy_now / div - end - - if 0 < rate_time and rate_time < 0.01 then -- check for magnitude discrepancies (#199) - rate_time_magnitude = math.abs(math.floor(math.log10(rate_time))) - rate_time = rate_time * 10^(rate_time_magnitude - 2) - end - end - - local hours = math.floor(rate_time) - local minutes = math.floor((rate_time - hours) * 60) - bat_now.perc = math.floor(math.min(100, (sum_energy_now / sum_energy_full) * 100)) - bat_now.time = string.format("%02d:%02d", hours, minutes) - bat_now.watt = tonumber(string.format("%.2f", sum_rate_energy / 1e6)) - elseif bat_now.status == "Full" then - bat_now.perc = 100 - bat_now.time = "00:00" - bat_now.watt = 0 - end - end - - widget = bat.widget - settings() - - -- notifications for critical, low, and full levels - if notify == "on" then - if bat_now.status == "Discharging" then - if tonumber(bat_now.perc) <= n_perc[1] then - bat.id = naughty.notify({ - preset = bat_notification_critical_preset, - replaces_id = bat.id - }).id - elseif tonumber(bat_now.perc) <= n_perc[2] then - bat.id = naughty.notify({ - preset = bat_notification_low_preset, - replaces_id = bat.id - }).id - end - fullnotification = false - elseif bat_now.status == "Full" and full_notify == "on" and not fullnotification then - bat.id = naughty.notify({ - preset = bat_notification_charged_preset, - replaces_id = bat.id - }).id - fullnotification = true - end - end - end - - helpers.newtimer("batteries", timeout, bat.update) - - return bat -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/cal.lua b/awesome/.config/awesome/lain/widget/cal.lua deleted file mode 100755 index 928a7bd..0000000 --- a/awesome/.config/awesome/lain/widget/cal.lua +++ /dev/null @@ -1,175 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2018, Luca CPZ - ---]] - -local helpers = require("lain.helpers") -local markup = require("lain.util.markup") -local awful = require("awful") -local naughty = require("naughty") -local floor = math.floor -local os = os -local pairs = pairs -local string = string -local tconcat = table.concat -local type = type -local tonumber = tonumber -local tostring = tostring - --- Calendar notification --- lain.widget.cal - -local function factory(args) - args = args or {} - local cal = { - attach_to = args.attach_to or {}, - week_start = args.week_start or 2, - three = args.three or false, - followtag = args.followtag or false, - week_number = args.week_number or "none", - week_number_format = args.week_number_format or args.week_number == "left" and "%3d | " or "| %-3d", - icons = args.icons or helpers.icons_dir .. "cal/white/", - notification_preset = args.notification_preset or { - font = "Monospace 10", fg = "#FFFFFF", bg = "#000000" - } - } - - function cal.get_week_number(m, st_day, x) - return string.format(cal.week_number_format, os.date("%V", m) + (x ~= 0 and floor((x + st_day) / 7) - 1 or 0)) - end - - function cal.sum_week_days(x, y) - return (x + y) % 7 - end - - function cal.build(month, year) - local current_month, current_year = tonumber(os.date("%m")), tonumber(os.date("%Y")) - local is_current_month = (not month or not year) or (month == current_month and year == current_year) - local today = is_current_month and tonumber(os.date("%d")) -- otherwise nil and not highlighted - local t = os.time { year = year or current_year, month = month and month+1 or current_month+1, day = 0 } - local d = os.date("*t", t) - local mth_days, st_day, this_month = d.day, (d.wday-d.day-cal.week_start+1)%7, os.date("%B %Y", t) - local notifytable = { [1] = string.format("%s%s\n", string.rep(" ", floor((28 - this_month:len())/2)), markup.bold(this_month)) } - for x = 0,6 do notifytable[#notifytable+1] = os.date("%a", os.time { year=2006, month=1, day=x+cal.week_start }):sub(1, 3) .. " " end - notifytable[#notifytable] = string.format("%s\n%s", notifytable[#notifytable]:sub(1, -2), string.rep(" ", st_day*4)) - local strx - for x = 1,mth_days do - strx = x - if x == today then - if x < 10 then x = " " .. x end - strx = markup.bold(markup.color(cal.notification_preset.bg, cal.notification_preset.fg, x) .. " ") - end - strx = string.format("%s%s", string.rep(" ", 3 - tostring(x):len()), strx) - notifytable[#notifytable+1] = string.format("%-4s%s", strx, (x+st_day)%7==0 and x ~= mth_days and "\n" or "") - end - if string.len(cal.icons or "") > 0 and today then cal.icon = cal.icons .. today .. ".png" end - cal.month, cal.year = d.month, d.year - - if cal.week_number ~= "none" then - local m = os.time { year = year or current_year, month = month and month or current_month, day = 0 } - local head_prepend = string.rep(" ", tostring(string.format(cal.week_number_format, 0)):len()) - - if cal.week_number == "left" then - notifytable[1] = head_prepend .. notifytable[1] -- month-year row - notifytable[2] = head_prepend .. notifytable[2] -- weekdays row - notifytable[8] = notifytable[8]:gsub("\n", "\n" .. cal.get_week_number(m, st_day, 0)) -- first week of the month - - for x = 10,#notifytable do - if cal.sum_week_days(st_day, x) == 2 then - notifytable[x] = cal.get_week_number(m, st_day, x) .. notifytable[x] - end - end - elseif cal.week_number == "right" then - notifytable[8] = notifytable[8]:gsub("\n", head_prepend .. "\n") -- weekdays row - for x = 9,#notifytable do - if cal.sum_week_days(st_day, x) == 1 then - notifytable[x] = notifytable[x]:gsub("\n", cal.get_week_number(m, st_day, x - 7) .. "\n") - end - end - -- last week of the month - local end_days = cal.sum_week_days(st_day, mth_days) - if end_days ~= 0 then end_days = 7 - end_days end - notifytable[#notifytable] = notifytable[#notifytable] .. string.rep(" ", 4 * end_days) .. cal.get_week_number(m, st_day, mth_days + end_days) - end - end - - return notifytable - end - - function cal.getdate(month, year, offset) - if not month or not year then - month = tonumber(os.date("%m")) - year = tonumber(os.date("%Y")) - end - - month = month + offset - - while month > 12 do - month = month - 12 - year = year + 1 - end - - while month < 1 do - month = month + 12 - year = year - 1 - end - - return month, year - end - - function cal.hide() - if not cal.notification then return end - naughty.destroy(cal.notification) - cal.notification = nil - end - - function cal.show(seconds, month, year, scr) - cal.notification_preset.text = tconcat(cal.build(month, year)) - - if cal.three then - local current_month, current_year = cal.month, cal.year - local prev_month, prev_year = cal.getdate(cal.month, cal.year, -1) - local next_month, next_year = cal.getdate(cal.month, cal.year, 1) - cal.notification_preset.text = string.format("%s\n\n%s\n\n%s", - tconcat(cal.build(prev_month, prev_year)), cal.notification_preset.text, - tconcat(cal.build(next_month, next_year))) - cal.month, cal.year = current_month, current_year - end - - cal.hide() - cal.notification = naughty.notify { - preset = cal.notification_preset, - screen = cal.followtag and awful.screen.focused() or scr or 1, - icon = cal.icon, - timeout = type(seconds) == "number" and seconds or cal.notification_preset.timeout or 5 - } - end - - function cal.hover_on() cal.show(0) end - function cal.move(offset) - local offset = offset or 0 - cal.month, cal.year = cal.getdate(cal.month, cal.year, offset) - cal.show(0, cal.month, cal.year) - end - function cal.prev() cal.move(-1) end - function cal.next() cal.move( 1) end - - function cal.attach(widget) - widget:connect_signal("mouse::enter", cal.hover_on) - widget:connect_signal("mouse::leave", cal.hide) - widget:buttons(awful.util.table.join( - awful.button({}, 1, cal.prev), - awful.button({}, 3, cal.next), - awful.button({}, 2, cal.hover_on), - awful.button({}, 5, cal.prev), - awful.button({}, 4, cal.next))) - end - - for _, widget in pairs(cal.attach_to) do cal.attach(widget) end - - return cal -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/contrib/init.lua b/awesome/.config/awesome/lain/widget/contrib/init.lua deleted file mode 100755 index 9e863a5..0000000 --- a/awesome/.config/awesome/lain/widget/contrib/init.lua +++ /dev/null @@ -1,18 +0,0 @@ ---[[ - - Lain - Layouts, widgets and utilities for Awesome WM - - Users contributed widgets section - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - ---]] - -local wrequire = require("lain.helpers").wrequire -local setmetatable = setmetatable - -local widget = { _NAME = "lain.widget.contrib" } - -return setmetatable(widget, { __index = wrequire }) diff --git a/awesome/.config/awesome/lain/widget/contrib/moc.lua b/awesome/.config/awesome/lain/widget/contrib/moc.lua deleted file mode 100755 index f429c77..0000000 --- a/awesome/.config/awesome/lain/widget/contrib/moc.lua +++ /dev/null @@ -1,96 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2014, anticlockwise - ---]] - -local helpers = require("lain.helpers") -local shell = require("awful.util").shell -local focused = require("awful.screen").focused -local escape_f = require("awful.util").escape -local naughty = require("naughty") -local wibox = require("wibox") -local os = os -local string = string - --- MOC audio player --- lain.widget.contrib.moc - -local function factory(args) - local moc = { widget = wibox.widget.textbox() } - local args = args or {} - local timeout = args.timeout or 2 - local music_dir = args.music_dir or os.getenv("HOME") .. "/Music" - local cover_pattern = args.cover_pattern or "*\\.(jpg|jpeg|png|gif)$" - local cover_size = args.cover_size or 100 - local default_art = args.default_art or "" - local followtag = args.followtag or false - local settings = args.settings or function() end - - moc_notification_preset = { title = "Now playing", timeout = 6 } - - helpers.set_map("current moc track", nil) - - function moc.update() - helpers.async("mocp -i", function(f) - moc_now = { - state = "N/A", - file = "N/A", - artist = "N/A", - title = "N/A", - album = "N/A", - elapsed = "N/A", - total = "N/A" - } - - for line in string.gmatch(f, "[^\n]+") do - for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do - if k == "State" then moc_now.state = v - elseif k == "File" then moc_now.file = v - elseif k == "Artist" then moc_now.artist = escape_f(v) - elseif k == "SongTitle" then moc_now.title = escape_f(v) - elseif k == "Album" then moc_now.album = escape_f(v) - elseif k == "CurrentTime" then moc_now.elapsed = escape_f(v) - elseif k == "TotalTime" then moc_now.total = escape_f(v) - end - end - end - - moc_notification_preset.text = string.format("%s (%s) - %s\n%s", moc_now.artist, - moc_now.album, moc_now.total, moc_now.title) - widget = moc.widget - settings() - - if moc_now.state == "PLAY" then - if moc_now.title ~= helpers.get_map("current moc track") then - helpers.set_map("current moc track", moc_now.title) - - if followtag then moc_notification_preset.screen = focused() end - - local common = { - preset = moc_notification_preset, - icon = default_art, - icon_size = cover_size, - replaces_id = moc.id, - } - - local path = string.format("%s/%s", music_dir, string.match(moc_now.file, ".*/")) - local cover = string.format("find '%s' -maxdepth 1 -type f | egrep -i -m1 '%s'", path, cover_pattern) - helpers.async({ shell, "-c", cover }, function(current_icon) - common.icon = current_icon:gsub("\n", "") - moc.id = naughty.notify(common).id - end) - end - elseif moc_now.state ~= "PAUSE" then - helpers.set_map("current moc track", nil) - end - end) - end - - moc.timer = helpers.newtimer("moc", timeout, moc.update, true, true) - - return moc -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/contrib/redshift.lua b/awesome/.config/awesome/lain/widget/contrib/redshift.lua deleted file mode 100755 index d0e5eed..0000000 --- a/awesome/.config/awesome/lain/widget/contrib/redshift.lua +++ /dev/null @@ -1,54 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2017, Luca CPZ - * (c) 2014, blueluke - ---]] - -local async = require("lain.helpers").async -local awful = require("awful") -local execute = os.execute -local type = type - --- Redshift --- lain.widget.contrib.redshift -local redshift = { active = false, pid = nil } - -function redshift:start() - execute("pkill redshift") - awful.spawn.with_shell("redshift -x") -- clear adjustments - redshift.pid = awful.spawn.with_shell("redshift") - redshift.active = true - if type(redshift.update_fun) == "function" then - redshift.update_fun(redshift.active) - end -end - -function redshift:toggle() - async({ awful.util.shell, "-c", string.format("ps -p %d -o pid=", redshift.pid) }, function(f) - if f and #f > 0 then -- redshift is running - -- Sending -USR1 toggles redshift (See project website) - execute("pkill -USR1 redshift") - redshift.active = not redshift.active - else -- not started or killed, (re)start it - redshift:start() - end - redshift.update_fun(redshift.active) - end) -end - --- Attach to a widget --- Provides a button which toggles redshift on/off on click --- @param widget: Widget to attach to. --- @param fun: Function to be run each time redshift is toggled (optional). --- Use it to update widget text or icons on status change. -function redshift:attach(widget, fun) - redshift.update_fun = fun or function() end - if not redshift.pid then redshift:start() end - if widget then - widget:buttons(awful.util.table.join(awful.button({}, 1, function () redshift:toggle() end))) - end -end - -return redshift diff --git a/awesome/.config/awesome/lain/widget/contrib/task.lua b/awesome/.config/awesome/lain/widget/contrib/task.lua deleted file mode 100755 index 536e006..0000000 --- a/awesome/.config/awesome/lain/widget/contrib/task.lua +++ /dev/null @@ -1,92 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Jan Xie - ---]] - -local helpers = require("lain.helpers") -local markup = require("lain.util").markup -local awful = require("awful") -local naughty = require("naughty") -local mouse = mouse -local string = string - --- Taskwarrior notification --- lain.widget.contrib.task -local task = {} - -function task.hide() - if not task.notification then return end - naughty.destroy(task.notification) - task.notification = nil -end - -function task.show(scr) - task.notification_preset.screen = task.followtag and awful.screen.focused() or scr or 1 - - helpers.async({ awful.util.shell, "-c", task.show_cmd }, function(f) - local widget_focused = true - - if mouse.current_widgets then - widget_focused = false - for _,v in ipairs(mouse.current_widgets) do - if task.widget == v then - widget_focused = true - break - end - end - end - - if widget_focused then - task.hide() - task.notification = naughty.notify { - preset = task.notification_preset, - title = "task next", - text = markup.font(task.notification_preset.font, - awful.util.escape(f:gsub("\n*$", ""))) - } - end - end) -end - -function task.prompt() - awful.prompt.run { - prompt = task.prompt_text, - textbox = awful.screen.focused().mypromptbox.widget, - exe_callback = function(t) - helpers.async(t, function(f) - naughty.notify { - preset = task.notification_preset, - title = t, - text = markup.font(task.notification_preset.font, - awful.util.escape(f:gsub("\n*$", ""))) - } - end) - end, - history_path = awful.util.getdir("cache") .. "/history_task" - } -end - -function task.attach(widget, args) - local args = args or {} - task.show_cmd = args.show_cmd or "task next" - task.prompt_text = args.prompt_text or "Enter task command: " - task.followtag = args.followtag or false - task.notification_preset = args.notification_preset - task.widget = widget - - if not task.notification_preset then - task.notification_preset = { - font = "Monospace 10", - icon = helpers.icons_dir .. "/taskwarrior.png" - } - end - - if widget then - widget:connect_signal("mouse::enter", function () task.show() end) - widget:connect_signal("mouse::leave", function () task.hide() end) - end -end - -return task diff --git a/awesome/.config/awesome/lain/widget/contrib/tp_smapi.lua b/awesome/.config/awesome/lain/widget/contrib/tp_smapi.lua deleted file mode 100755 index b8acbe2..0000000 --- a/awesome/.config/awesome/lain/widget/contrib/tp_smapi.lua +++ /dev/null @@ -1,147 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2018, Luca CPZ - * (c) 2013, Conor Heine - ---]] - -local helpers = require("lain.helpers") -local focused = require("awful.screen").focused -local gears = require("gears") -local naughty = require("naughty") -local wibox = require("wibox") -local string = string -local type = type - --- ThinkPad battery infos and widget creator --- http://www.thinkwiki.org/wiki/Tp_smapi --- lain.widget.contrib.tp_smapi - -local function factory(apipath) - local tp_smapi = { - path = apipath or "/sys/devices/platform/smapi" - } - - function tp_smapi.get(batid, feature) - return helpers.first_line(string.format("%s/%s/%s", tp_smapi.path, batid or "BAT0", feature or "")) - end - - function tp_smapi.installed(batid) - return tp_smapi.get(batid, "installed") == "1" - end - - function tp_smapi.status(batid) - return tp_smapi.get(batid, "state") - end - - function tp_smapi.percentage(batid) - return tp_smapi.get(batid, "remaining_percent") - end - - -- either running or charging time - function tp_smapi.time(batid) - local status = tp_smapi.status(batid) - local mins_left = tp_smapi.get(batid, string.match(string.lower(status), "discharging") and "remaining_running_time" or "remaining_charging_time") - if not string.find(mins_left, "^%d+") then return "N/A" end - return string.format("%02d:%02d", math.floor(mins_left / 60), mins_left % 60) -- HH:mm - end - - function tp_smapi.hide() - if not tp_smapi.notification then return end - naughty.destroy(tp_smapi.notification) - tp_smapi.notification = nil - end - - function tp_smapi.show(batid, seconds, scr) - if not tp_smapi.installed(batid) then return end - - local mfgr = tp_smapi.get(batid, "manufacturer") or "no_mfgr" - local model = tp_smapi.get(batid, "model") or "no_model" - local chem = tp_smapi.get(batid, "chemistry") or "no_chem" - local status = tp_smapi.get(batid, "state") - local time = tp_smapi.time(batid) - local msg = "" - - if status and status ~= "idle" then - msg = string.format("[%s] %s %s", status, time ~= "N/A" and time or "unknown remaining time", - string.lower(status):gsub(" ", ""):gsub("\n", "") == "charging" and " until charged" or " remaining") - else - msg = "On AC power" - end - - tp_smapi.hide() - tp_smapi.notification = naughty.notify { - title = string.format("%s: %s %s (%s)", batid, mfgr, model, chem), - text = msg, - timeout = type(seconds) == "number" and seconds or 0, - screen = scr or focused() - } - end - - function tp_smapi.create_widget(args) - local args = args or {} - local pspath = args.pspath or "/sys/class/power_supply/" - local batteries = args.batteries or (args.battery and {args.battery}) or {} - local timeout = args.timeout or 30 - local settings = args.settings or function() end - - if #batteries == 0 then - helpers.line_callback("ls -1 " .. pspath, function(line) - local bstr = string.match(line, "BAT%w+") - if bstr then batteries[#batteries + 1] = bstr end - end) - end - - local all_batteries_installed = true - - for i, battery in ipairs(batteries) do - if not tp_smapi.installed(battery) then - naughty.notify { - preset = naughty.config.critical, - title = "tp_smapi: error while creating widget", - text = string.format("battery %s is not installed", battery) - } - all_batteries_installed = false - break - end - end - - if not all_batteries_installed then return end - - tpbat = { - batteries = batteries, - widget = args.widget or wibox.widget.textbox() - } - - function tpbat.update() - tpbat_now = { - n_status = {}, - n_perc = {}, - n_time = {}, - status = "N/A" - } - - for i = 1, #batteries do - tpbat_now.n_status[i] = tp_smapi.status(batteries[i]) or "N/A" - tpbat_now.n_perc[i] = tp_smapi.percentage(batteries[i]) - tpbat_now.n_time[i] = tp_smapi.time(batteries[i]) or "N/A" - - if not tpbat_now.n_status[i]:lower():match("full") then - tpbat_now.status = tpbat_now.n_status[i] - end - end - - widget = tpbat.widget -- backwards compatibility - settings() - end - - helpers.newtimer("thinkpad-batteries", timeout, tpbat.update) - - return tpbat - end - - return tp_smapi -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/cpu.lua b/awesome/.config/awesome/lain/widget/cpu.lua deleted file mode 100755 index f4cce73..0000000 --- a/awesome/.config/awesome/lain/widget/cpu.lua +++ /dev/null @@ -1,75 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local helpers = require("lain.helpers") -local wibox = require("wibox") -local math = math -local string = string -local tostring = tostring - --- CPU usage --- lain.widget.cpu - -local function factory(args) - local cpu = { core = {}, widget = wibox.widget.textbox() } - local args = args or {} - local timeout = args.timeout or 2 - local settings = args.settings or function() end - - function cpu.update() - -- Read the amount of time the CPUs have spent performing - -- different kinds of work. Read the first line of /proc/stat - -- which is the sum of all CPUs. - for index,time in pairs(helpers.lines_match("cpu","/proc/stat")) do - local coreid = index - 1 - local core = cpu.core[coreid] or - { last_active = 0 , last_total = 0, usage = 0 } - local at = 1 - local idle = 0 - local total = 0 - - for field in string.gmatch(time, "[%s]+([^%s]+)") do - -- 4 = idle, 5 = ioWait. Essentially, the CPUs have done - -- nothing during these times. - if at == 4 or at == 5 then - idle = idle + field - end - total = total + field - at = at + 1 - end - - local active = total - idle - - if core.last_active ~= active or core.last_total ~= total then - -- Read current data and calculate relative values. - local dactive = active - core.last_active - local dtotal = total - core.last_total - local usage = math.ceil((dactive / dtotal) * 100) - - core.last_active = active - core.last_total = total - core.usage = usage - - -- Save current data for the next run. - cpu.core[coreid] = core - end - end - - cpu_now = cpu.core - cpu_now.usage = cpu_now[0].usage - widget = cpu.widget - - settings() - end - - helpers.newtimer("cpu", timeout, cpu.update) - - return cpu -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/fs.lua b/awesome/.config/awesome/lain/widget/fs.lua deleted file mode 100755 index 58fbf93..0000000 --- a/awesome/.config/awesome/lain/widget/fs.lua +++ /dev/null @@ -1,151 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2018, Uli Schlacter - * (c) 2018, Otto Modinos - * (c) 2013, Luca CPZ - ---]] - -local helpers = require("lain.helpers") -local Gio = require("lgi").Gio -local focused = require("awful.screen").focused -local wibox = require("wibox") -local naughty = require("naughty") -local math = math -local string = string -local tconcat = table.concat -local type = type -local tonumber = tonumber -local query_size = Gio.FILE_ATTRIBUTE_FILESYSTEM_SIZE -local query_free = Gio.FILE_ATTRIBUTE_FILESYSTEM_FREE -local query_used = Gio.FILE_ATTRIBUTE_FILESYSTEM_USED -local query = query_size .. "," .. query_free .. "," .. query_used - --- File systems info --- lain.widget.fs - -local function factory(args) - local fs = { - widget = wibox.widget.textbox(), - units = { - [1] = "Kb", [2] = "Mb", [3] = "Gb", - [4] = "Tb", [5] = "Pb", [6] = "Eb", - [7] = "Zb", [8] = "Yb" - } - } - - function fs.hide() - if not fs.notification then return end - naughty.destroy(fs.notification) - fs.notification = nil - end - - function fs.show(seconds, scr) - fs.hide(); fs.update() - fs.notification_preset.screen = fs.followtag and focused() or scr or 1 - fs.notification = naughty.notify { - preset = fs.notification_preset, - timeout = type(seconds) == "number" and seconds or 5 - } - end - - local args = args or {} - local timeout = args.timeout or 600 - local partition = args.partition - local threshold = args.threshold or 99 - local showpopup = args.showpopup or "on" - local settings = args.settings or function() end - - fs.followtag = args.followtag or false - fs.notification_preset = args.notification_preset - - if not fs.notification_preset then - fs.notification_preset = { - font = "Monospace 10", - fg = "#FFFFFF", - bg = "#000000" - } - end - - function fs.update() - local notifytable = { [1] = string.format("%-10s %4s\t%6s\t%6s\t\n", "path", "used", "free", "size") } - local pathlen = 10 - local maxpathidx = 1 - fs_now = {} - - for _, mount in ipairs(Gio.unix_mounts_get()) do - local path = Gio.unix_mount_get_mount_path(mount) - local root = Gio.File.new_for_path(path) - local info = root:query_filesystem_info(query) - - if info then - local size = info:get_attribute_uint64(query_size) - local used = info:get_attribute_uint64(query_used) - local free = info:get_attribute_uint64(query_free) - - if size > 0 then - local units = math.floor(math.log(size)/math.log(1024)) - - fs_now[path] = { - units = fs.units[units], - percentage = math.floor(100 * used / size), -- used percentage - size = size / math.pow(1024, math.floor(units)), - used = used / math.pow(1024, math.floor(units)), - free = free / math.pow(1024, math.floor(units)) - } - - if fs_now[path].percentage > 0 then -- don't notify unused file systems - notifytable[#notifytable+1] = string.format("\n%-10s %3s%%\t%6.2f\t%6.2f\t%s", path, - math.floor(fs_now[path].percentage), fs_now[path].free, fs_now[path].size, - fs_now[path].units) - - if #path > pathlen then - pathlen = #path - maxpathidx = #notifytable - end - end - end - end - end - - widget = fs.widget - settings() - - if partition and fs_now[partition] and fs_now[partition].percentage >= threshold then - if not helpers.get_map(partition) then - naughty.notify { - preset = naughty.config.presets.critical, - title = "Warning", - text = string.format("%s is above %d%% (%d%%)", partition, threshold, fs_now[partition].percentage) - } - helpers.set_map(partition, true) - else - helpers.set_map(partition, false) - end - end - - if pathlen > 10 then -- if are there paths longer than 10 chars, reformat first column accordingly - local pathspaces - for i = 1, #notifytable do - pathspaces = notifytable[i]:match("[ ]+") - if i ~= maxpathidx and pathspaces then - notifytable[i] = notifytable[i]:gsub(pathspaces, pathspaces .. string.rep(" ", pathlen - 10)) - end - end - end - - fs.notification_preset.text = tconcat(notifytable) - end - - if showpopup == "on" then - fs.widget:connect_signal('mouse::enter', function () fs.show(0) end) - fs.widget:connect_signal('mouse::leave', function () fs.hide() end) - end - - helpers.newtimer(partition or "fs", timeout, fs.update) - - return fs -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/imap.lua b/awesome/.config/awesome/lain/widget/imap.lua deleted file mode 100755 index b3d9dc7..0000000 --- a/awesome/.config/awesome/lain/widget/imap.lua +++ /dev/null @@ -1,93 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - ---]] - -local helpers = require("lain.helpers") -local naughty = require("naughty") -local wibox = require("wibox") -local awful = require("awful") -local string = string -local type = type -local tonumber = tonumber - --- Mail IMAP check --- lain.widget.imap - -local function factory(args) - local imap = { widget = wibox.widget.textbox() } - local args = args or {} - local server = args.server - local mail = args.mail - local password = args.password - local port = args.port or 993 - local timeout = args.timeout or 60 - local pwdtimeout = args.pwdtimeout or 10 - local is_plain = args.is_plain or false - local followtag = args.followtag or false - local notify = args.notify or "on" - local settings = args.settings or function() end - - local head_command = "curl --connect-timeout 3 -fsm 3" - local request = "-X 'STATUS INBOX (MESSAGES RECENT UNSEEN)'" - - if not server or not mail or not password then return end - - mail_notification_preset = { - icon = helpers.icons_dir .. "mail.png", - position = "top_left" - } - - helpers.set_map(mail, 0) - - if not is_plain then - if type(password) == "string" or type(password) == "table" then - helpers.async(password, function(f) password = f:gsub("\n", "") end) - elseif type(password) == "function" then - imap.pwdtimer = helpers.newtimer(mail .. "-password", pwdtimeout, function() - local retrieved_password, try_again = password() - if not try_again then - imap.pwdtimer:stop() -- stop trying to retrieve - password = retrieved_password or "" -- failsafe - end - end, true, true) - end - end - - function imap.update() - -- do not update if the password has not been retrieved yet - if type(password) ~= "string" then return end - - local curl = string.format("%s --url imaps://%s:%s/INBOX -u %s:'%s' %s -k", - head_command, server, port, mail, password, request) - - helpers.async(curl, function(f) - imap_now = { ["MESSAGES"] = 0, ["RECENT"] = 0, ["UNSEEN"] = 0 } - - for s,d in f:gmatch("(%w+)%s+(%d+)") do imap_now[s] = tonumber(d) end - mailcount = imap_now["UNSEEN"] -- backwards compatibility - widget = imap.widget - - settings() - - if notify == "on" and mailcount and mailcount >= 1 and mailcount > helpers.get_map(mail) then - if followtag then mail_notification_preset.screen = awful.screen.focused() end - naughty.notify { - preset = mail_notification_preset, - text = string.format("%s has %d new message%s", mail, mailcount, mailcount == 1 and "" or "s") - } - end - - helpers.set_map(mail, imap_now["UNSEEN"]) - end) - - end - - imap.timer = helpers.newtimer(mail, timeout, imap.update, true, true) - - return imap -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/init.lua b/awesome/.config/awesome/lain/widget/init.lua deleted file mode 100755 index 57b86bb..0000000 --- a/awesome/.config/awesome/lain/widget/init.lua +++ /dev/null @@ -1,19 +0,0 @@ ---[[ - - Lain - Layouts, widgets and utilities for Awesome WM - - Widgets section - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local wrequire = require("lain.helpers").wrequire -local setmetatable = setmetatable - -local widget = { _NAME = "lain.widget" } - -return setmetatable(widget, { __index = wrequire }) diff --git a/awesome/.config/awesome/lain/widget/mem.lua b/awesome/.config/awesome/lain/widget/mem.lua deleted file mode 100755 index 3dcae2b..0000000 --- a/awesome/.config/awesome/lain/widget/mem.lua +++ /dev/null @@ -1,50 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local helpers = require("lain.helpers") -local wibox = require("wibox") -local gmatch, lines, floor = string.gmatch, io.lines, math.floor - --- Memory usage (ignoring caches) --- lain.widget.mem - -local function factory(args) - local mem = { widget = wibox.widget.textbox() } - local args = args or {} - local timeout = args.timeout or 2 - local settings = args.settings or function() end - - function mem.update() - mem_now = {} - for line in lines("/proc/meminfo") do - for k, v in gmatch(line, "([%a]+):[%s]+([%d]+).+") do - if k == "MemTotal" then mem_now.total = floor(v / 1024 + 0.5) - elseif k == "MemFree" then mem_now.free = floor(v / 1024 + 0.5) - elseif k == "Buffers" then mem_now.buf = floor(v / 1024 + 0.5) - elseif k == "Cached" then mem_now.cache = floor(v / 1024 + 0.5) - elseif k == "SwapTotal" then mem_now.swap = floor(v / 1024 + 0.5) - elseif k == "SwapFree" then mem_now.swapf = floor(v / 1024 + 0.5) - elseif k == "SReclaimable" then mem_now.srec = floor(v / 1024 + 0.5) - end - end - end - - mem_now.used = mem_now.total - mem_now.free - mem_now.buf - mem_now.cache - mem_now.srec - mem_now.swapused = mem_now.swap - mem_now.swapf - mem_now.perc = math.floor(mem_now.used / mem_now.total * 100) - - widget = mem.widget - settings() - end - - helpers.newtimer("mem", timeout, mem.update) - - return mem -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/mpd.lua b/awesome/.config/awesome/lain/widget/mpd.lua deleted file mode 100755 index 01f28e6..0000000 --- a/awesome/.config/awesome/lain/widget/mpd.lua +++ /dev/null @@ -1,132 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010, Adrian C. - ---]] - -local helpers = require("lain.helpers") -local shell = require("awful.util").shell -local escape_f = require("awful.util").escape -local focused = require("awful.screen").focused -local naughty = require("naughty") -local wibox = require("wibox") -local os = os -local string = string - --- MPD infos --- lain.widget.mpd - -local function factory(args) - local mpd = { widget = wibox.widget.textbox() } - local args = args or {} - local timeout = args.timeout or 2 - local password = (args.password and #args.password > 0 and string.format("password %s\\n", args.password)) or "" - local host = args.host or os.getenv("MPD_HOST") or "127.0.0.1" - local port = args.port or os.getenv("MPD_PORT") or "6600" - local music_dir = args.music_dir or os.getenv("HOME") .. "/Music" - local cover_pattern = args.cover_pattern or "*\\.(jpg|jpeg|png|gif)$" - local cover_size = args.cover_size or 100 - local default_art = args.default_art - local notify = args.notify or "on" - local followtag = args.followtag or false - local settings = args.settings or function() end - - local mpdh = string.format("telnet://%s:%s", host, port) - local echo = string.format("printf \"%sstatus\\ncurrentsong\\nclose\\n\"", password) - local cmd = string.format("%s | curl --connect-timeout 1 -fsm 3 %s", echo, mpdh) - - mpd_notification_preset = { title = "Now playing", timeout = 6 } - - helpers.set_map("current mpd track", nil) - - function mpd.update() - helpers.async({ shell, "-c", cmd }, function(f) - mpd_now = { - random_mode = false, - single_mode = false, - repeat_mode = false, - consume_mode = false, - pls_pos = "N/A", - pls_len = "N/A", - state = "N/A", - file = "N/A", - name = "N/A", - artist = "N/A", - title = "N/A", - album = "N/A", - genre = "N/A", - track = "N/A", - date = "N/A", - time = "N/A", - elapsed = "N/A" - } - - for line in string.gmatch(f, "[^\n]+") do - for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do - if k == "state" then mpd_now.state = v - elseif k == "file" then mpd_now.file = v - elseif k == "Name" then mpd_now.name = escape_f(v) - elseif k == "Artist" then mpd_now.artist = escape_f(v) - elseif k == "Title" then mpd_now.title = escape_f(v) - elseif k == "Album" then mpd_now.album = escape_f(v) - elseif k == "Genre" then mpd_now.genre = escape_f(v) - elseif k == "Track" then mpd_now.track = escape_f(v) - elseif k == "Date" then mpd_now.date = escape_f(v) - elseif k == "Time" then mpd_now.time = v - elseif k == "elapsed" then mpd_now.elapsed = string.match(v, "%d+") - elseif k == "song" then mpd_now.pls_pos = v - elseif k == "playlistlength" then mpd_now.pls_len = v - elseif k == "repeat" then mpd_now.repeat_mode = v ~= "0" - elseif k == "single" then mpd_now.single_mode = v ~= "0" - elseif k == "random" then mpd_now.random_mode = v ~= "0" - elseif k == "consume" then mpd_now.consume_mode = v ~= "0" - end - end - end - - mpd_notification_preset.text = string.format("%s (%s) - %s\n%s", mpd_now.artist, - mpd_now.album, mpd_now.date, mpd_now.title) - widget = mpd.widget - settings() - - if mpd_now.state == "play" then - if notify == "on" and mpd_now.title ~= helpers.get_map("current mpd track") then - helpers.set_map("current mpd track", mpd_now.title) - - if followtag then mpd_notification_preset.screen = focused() end - - local common = { - preset = mpd_notification_preset, - icon = default_art, - icon_size = cover_size, - replaces_id = mpd.id - } - - if not string.match(mpd_now.file, "http.*://") then -- local file instead of http stream - local path = string.format("%s/%s", music_dir, string.match(mpd_now.file, ".*/")) - local cover = string.format("find '%s' -maxdepth 1 -type f | egrep -i -m1 '%s'", - path:gsub("'", "'\\''"), cover_pattern) - helpers.async({ shell, "-c", cover }, function(current_icon) - common.icon = current_icon:gsub("\n", "") - if #common.icon == 0 then common.icon = nil end - mpd.id = naughty.notify(common).id - end) - else - mpd.id = naughty.notify(common).id - end - - end - elseif mpd_now.state ~= "pause" then - helpers.set_map("current mpd track", nil) - end - end) - end - - mpd.timer = helpers.newtimer("mpd", timeout, mpd.update, true, true) - - return mpd -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/net.lua b/awesome/.config/awesome/lain/widget/net.lua deleted file mode 100755 index 805b577..0000000 --- a/awesome/.config/awesome/lain/widget/net.lua +++ /dev/null @@ -1,113 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local helpers = require("lain.helpers") -local naughty = require("naughty") -local wibox = require("wibox") -local string = string - --- Network infos --- lain.widget.net - -local function factory(args) - local net = { widget = wibox.widget.textbox(), devices = {} } - local args = args or {} - local timeout = args.timeout or 2 - local units = args.units or 1024 -- KB - local notify = args.notify or "on" - local wifi_state = args.wifi_state or "off" - local eth_state = args.eth_state or "off" - local screen = args.screen or 1 - local settings = args.settings or function() end - - -- Compatibility with old API where iface was a string corresponding to 1 interface - net.iface = (args.iface and (type(args.iface) == "string" and {args.iface}) or - (type(args.iface) == "table" and args.iface)) or {} - - function net.get_device() - helpers.line_callback("ip link", function(line) - net.iface[#net.iface + 1] = not string.match(line, "LOOPBACK") and string.match(line, "(%w+): <") or nil - end) - end - - if #net.iface == 0 then net.get_device() end - - function net.update() - -- These are the totals over all specified interfaces - net_now = { - devices = {}, - -- Bytes since last iteration - sent = 0, - received = 0 - } - - for _, dev in ipairs(net.iface) do - local dev_now = {} - local dev_before = net.devices[dev] or { last_t = 0, last_r = 0 } - local now_t = tonumber(helpers.first_line(string.format("/sys/class/net/%s/statistics/tx_bytes", dev)) or 0) - local now_r = tonumber(helpers.first_line(string.format("/sys/class/net/%s/statistics/rx_bytes", dev)) or 0) - - dev_now.carrier = helpers.first_line(string.format("/sys/class/net/%s/carrier", dev)) or "0" - dev_now.state = helpers.first_line(string.format("/sys/class/net/%s/operstate", dev)) or "down" - - dev_now.sent = (now_t - dev_before.last_t) / timeout / units - dev_now.received = (now_r - dev_before.last_r) / timeout / units - - net_now.sent = net_now.sent + dev_now.sent - net_now.received = net_now.received + dev_now.received - - dev_now.sent = string.format("%.1f", dev_now.sent) - dev_now.received = string.format("%.1f", dev_now.received) - - dev_now.last_t = now_t - dev_now.last_r = now_r - - if wifi_state == "on" and helpers.first_line(string.format("/sys/class/net/%s/uevent", dev)) == "DEVTYPE=wlan" and string.match(dev_now.carrier, "1") then - dev_now.wifi = true - dev_now.signal = tonumber(string.match(helpers.lines_from("/proc/net/wireless")[3], "(%-%d+%.)")) or nil - end - - if eth_state == "on" and helpers.first_line(string.format("/sys/class/net/%s/uevent", dev)) ~= "DEVTYPE=wlan" and string.match(dev_now.carrier, "1") then - dev_now.ethernet = true - end - - net.devices[dev] = dev_now - - -- Notify only once when connection is lost - if string.match(dev_now.carrier, "0") and notify == "on" and helpers.get_map(dev) then - naughty.notify { - title = dev, - text = "No carrier", - icon = helpers.icons_dir .. "no_net.png", - screen = screen - } - helpers.set_map(dev, false) - elseif string.match(dev_now.carrier, "1") then - helpers.set_map(dev, true) - end - - net_now.carrier = dev_now.carrier - net_now.state = dev_now.state - net_now.devices[dev] = dev_now - -- net_now.sent and net_now.received will be - -- the totals across all specified devices - end - - net_now.sent = string.format("%.1f", net_now.sent) - net_now.received = string.format("%.1f", net_now.received) - - widget = net.widget - settings() - end - - helpers.newtimer("network", timeout, net.update) - - return net -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/pulse.lua b/awesome/.config/awesome/lain/widget/pulse.lua deleted file mode 100755 index f63fe55..0000000 --- a/awesome/.config/awesome/lain/widget/pulse.lua +++ /dev/null @@ -1,57 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2016, Luca CPZ - ---]] - -local helpers = require("lain.helpers") -local shell = require("awful.util").shell -local wibox = require("wibox") -local string = string -local type = type - --- PulseAudio volume --- lain.widget.pulse - -local function factory(args) - local pulse = { widget = wibox.widget.textbox(), device = "N/A" } - local args = args or {} - local timeout = args.timeout or 5 - local settings = args.settings or function() end - - pulse.devicetype = args.devicetype or "sink" - pulse.cmd = args.cmd or "pacmd list-" .. pulse.devicetype .. "s | sed -n -e '/*/,$!d' -e '/index/p' -e '/base volume/d' -e '/volume:/p' -e '/muted:/p' -e '/device\\.string/p'" - - function pulse.update() - helpers.async({ shell, "-c", type(pulse.cmd) == "string" and pulse.cmd or pulse.cmd() }, - function(s) - volume_now = { - index = string.match(s, "index: (%S+)") or "N/A", - device = string.match(s, "device.string = \"(%S+)\"") or "N/A", - muted = string.match(s, "muted: (%S+)") or "N/A" - } - - pulse.device = volume_now.index - - local ch = 1 - volume_now.channel = {} - for v in string.gmatch(s, ":.-(%d+)%%") do - volume_now.channel[ch] = v - ch = ch + 1 - end - - volume_now.left = volume_now.channel[1] or "N/A" - volume_now.right = volume_now.channel[2] or "N/A" - - widget = pulse.widget - settings() - end) - end - - helpers.newtimer("pulse", timeout, pulse.update) - - return pulse -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/pulsebar.lua b/awesome/.config/awesome/lain/widget/pulsebar.lua deleted file mode 100755 index 51290f8..0000000 --- a/awesome/.config/awesome/lain/widget/pulsebar.lua +++ /dev/null @@ -1,171 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2013, Rman - ---]] - -local helpers = require("lain.helpers") -local awful = require("awful") -local naughty = require("naughty") -local wibox = require("wibox") -local math = math -local string = string -local type = type -local tonumber = tonumber - --- PulseAudio volume bar --- lain.widget.pulsebar - -local function factory(args) - local pulsebar = { - colors = { - background = "#000000", - mute = "#EB8F8F", - unmute = "#A4CE8A" - }, - - _current_level = 0, - _mute = "no", - device = "N/A" - } - - local args = args or {} - local timeout = args.timeout or 5 - local settings = args.settings or function() end - local width = args.width or 63 - local height = args.height or 1 - local margins = args.margins or 1 - local paddings = args.paddings or 1 - local ticks = args.ticks or false - local ticks_size = args.ticks_size or 7 - local tick = args.tick or "|" - local tick_pre = args.tick_pre or "[" - local tick_post = args.tick_post or "]" - local tick_none = args.tick_none or " " - - pulsebar.colors = args.colors or pulsebar.colors - pulsebar.followtag = args.followtag or false - pulsebar.notification_preset = args.notification_preset - pulsebar.devicetype = args.devicetype or "sink" - pulsebar.cmd = args.cmd or "pacmd list-" .. pulsebar.devicetype .. "s | sed -n -e '/*/,$!d' -e '/index/p' -e '/base volume/d' -e '/volume:/p' -e '/muted:/p' -e '/device\\.string/p'" - - if not pulsebar.notification_preset then - pulsebar.notification_preset = { - font = "Monospace 10" - } - end - - pulsebar.bar = wibox.widget { - color = pulsebar.colors.unmute, - background_color = pulsebar.colors.background, - forced_height = height, - forced_width = width, - margins = margins, - paddings = paddings, - ticks = ticks, - ticks_size = ticks_size, - widget = wibox.widget.progressbar, - } - - pulsebar.tooltip = awful.tooltip({ objects = { pulsebar.bar } }) - - function pulsebar.update(callback) - helpers.async({ awful.util.shell, "-c", type(pulsebar.cmd) == "string" and pulsebar.cmd or pulsebar.cmd() }, - function(s) - volume_now = { - index = string.match(s, "index: (%S+)") or "N/A", - device = string.match(s, "device.string = \"(%S+)\"") or "N/A", - muted = string.match(s, "muted: (%S+)") or "N/A" - } - - pulsebar.device = volume_now.index - - local ch = 1 - volume_now.channel = {} - for v in string.gmatch(s, ":.-(%d+)%%") do - volume_now.channel[ch] = v - ch = ch + 1 - end - - volume_now.left = volume_now.channel[1] or "N/A" - volume_now.right = volume_now.channel[2] or "N/A" - - local volu = volume_now.left - local mute = volume_now.muted - - if volu:match("N/A") or mute:match("N/A") then return end - - if volu ~= pulsebar._current_level or mute ~= pulsebar._mute then - pulsebar._current_level = tonumber(volu) - pulsebar.bar:set_value(pulsebar._current_level / 100) - if pulsebar._current_level == 0 or mute == "yes" then - pulsebar._mute = mute - pulsebar.tooltip:set_text ("[muted]") - pulsebar.bar.color = pulsebar.colors.mute - else - pulsebar._mute = "no" - pulsebar.tooltip:set_text(string.format("%s %s: %s", pulsebar.devicetype, pulsebar.device, volu)) - pulsebar.bar.color = pulsebar.colors.unmute - end - - settings() - - if type(callback) == "function" then callback() end - end - end) - end - - function pulsebar.notify() - pulsebar.update(function() - local preset = pulsebar.notification_preset - - preset.title = string.format("%s %s - %s%%", pulsebar.devicetype, pulsebar.device, pulsebar._current_level) - - if pulsebar._mute == "yes" then - preset.title = preset.title .. " muted" - end - - -- tot is the maximum number of ticks to display in the notification - -- fallback: default horizontal wibox height - local wib, tot = awful.screen.focused().mywibox, 20 - - -- if we can grab mywibox, tot is defined as its height if - -- horizontal, or width otherwise - if wib then - if wib.position == "left" or wib.position == "right" then - tot = wib.width - else - tot = wib.height - end - end - - int = math.modf((pulsebar._current_level / 100) * tot) - preset.text = string.format( - "%s%s%s%s", - tick_pre, - string.rep(tick, int), - string.rep(tick_none, tot - int), - tick_post - ) - - if pulsebar.followtag then preset.screen = awful.screen.focused() end - - if not pulsebar.notification then - pulsebar.notification = naughty.notify { - preset = preset, - destroy = function() pulsebar.notification = nil end - } - else - naughty.replace_text(pulsebar.notification, preset.title, preset.text) - end - end) - end - - helpers.newtimer(string.format("pulsebar-%s-%s", pulsebar.devicetype, pulsebar.device), timeout, pulsebar.update) - - return pulsebar -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/sysload.lua b/awesome/.config/awesome/lain/widget/sysload.lua deleted file mode 100755 index adf3e03..0000000 --- a/awesome/.config/awesome/lain/widget/sysload.lua +++ /dev/null @@ -1,38 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - * (c) 2010-2012, Peter Hofmann - ---]] - -local helpers = require("lain.helpers") -local wibox = require("wibox") -local open, match = io.open, string.match - --- System load --- lain.widget.sysload - -local function factory(args) - local sysload = { widget = wibox.widget.textbox() } - local args = args or {} - local timeout = args.timeout or 2 - local settings = args.settings or function() end - - function sysload.update() - local f = open("/proc/loadavg") - local ret = f:read("*all") - f:close() - - load_1, load_5, load_15 = match(ret, "([^%s]+) ([^%s]+) ([^%s]+)") - - widget = sysload.widget - settings() - end - - helpers.newtimer("sysload", timeout, sysload.update) - - return sysload -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/temp.lua b/awesome/.config/awesome/lain/widget/temp.lua deleted file mode 100755 index e909b32..0000000 --- a/awesome/.config/awesome/lain/widget/temp.lua +++ /dev/null @@ -1,44 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Luca CPZ - ---]] - -local helpers = require("lain.helpers") -local wibox = require("wibox") -local tonumber = tonumber - --- {thermal,core} temperature info --- lain.widget.temp - -local function factory(args) - local temp = { widget = wibox.widget.textbox() } - local args = args or {} - local timeout = args.timeout or 30 - local tempfile = args.tempfile or "/sys/devices/virtual/thermal/thermal_zone0/temp" - local settings = args.settings or function() end - - function temp.update() - helpers.async({"find", "/sys/devices", "-type", "f", "-name", "*temp*"}, function(f) - temp_now = {} - local temp_fl, temp_value - for t in f:gmatch("[^\n]+") do - temp_fl = helpers.first_line(t) - if temp_fl then - temp_value = tonumber(temp_fl) - temp_now[t] = temp_value and temp_value/1e3 or temp_fl - end - end - coretemp_now = temp_now[tempfile] or "N/A" - widget = temp.widget - settings() - end) - end - - helpers.newtimer("thermal", timeout, temp.update) - - return temp -end - -return factory diff --git a/awesome/.config/awesome/lain/widget/weather.lua b/awesome/.config/awesome/lain/widget/weather.lua deleted file mode 100755 index 9c1e797..0000000 --- a/awesome/.config/awesome/lain/widget/weather.lua +++ /dev/null @@ -1,148 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2015, Luca CPZ - ---]] - -local helpers = require("lain.helpers") -local json = require("lain.util").dkjson -local focused = require("awful.screen").focused -local naughty = require("naughty") -local wibox = require("wibox") -local math = math -local os = os -local string = string -local type = type -local tonumber = tonumber - --- OpenWeatherMap --- current weather and X-days forecast --- lain.widget.weather - -local function factory(args) - local weather = { widget = wibox.widget.textbox() } - local args = args or {} - local APPID = args.APPID or "3e321f9414eaedbfab34983bda77a66e" -- lain's default - local timeout = args.timeout or 60 * 15 -- 15 min - local timeout_forecast = args.timeout or 60 * 60 * 24 -- 24 hrs - local current_call = args.current_call or "curl -s 'http://api.openweathermap.org/data/2.5/weather?id=%s&units=%s&lang=%s&APPID=%s'" - local forecast_call = args.forecast_call or "curl -s 'http://api.openweathermap.org/data/2.5/forecast/daily?id=%s&units=%s&lang=%s&cnt=%s&APPID=%s'" - local city_id = args.city_id or 0 -- placeholder - local units = args.units or "metric" - local lang = args.lang or "en" - local cnt = args.cnt or 5 - local date_cmd = args.date_cmd or "date -u -d @%d +'%%a %%d'" - local icons_path = args.icons_path or helpers.icons_dir .. "openweathermap/" - local notification_preset = args.notification_preset or {} - local notification_text_fun = args.notification_text_fun or - function (wn) - local day = os.date("%a %d", wn["dt"]) - local tmin = math.floor(wn["temp"]["min"]) - local tmax = math.floor(wn["temp"]["max"]) - local desc = wn["weather"][1]["description"] - return string.format("%s: %s, %d - %d ", day, desc, tmin, tmax) - end - local weather_na_markup = args.weather_na_markup or " N/A " - local followtag = args.followtag or false - local showpopup = args.showpopup or "on" - local settings = args.settings or function() end - - weather.widget:set_markup(weather_na_markup) - weather.icon_path = icons_path .. "na.png" - weather.icon = wibox.widget.imagebox(weather.icon_path) - - function weather.show(seconds) - weather.hide() - - if followtag then - notification_preset.screen = focused() - end - - if not weather.notification_text then - weather.update() - weather.forecast_update() - end - - weather.notification = naughty.notify { - preset = notification_preset, - text = weather.notification_text, - icon = weather.icon_path, - timeout = type(seconds == "number") and seconds or notification_preset.timeout - } - end - - function weather.hide() - if weather.notification then - naughty.destroy(weather.notification) - weather.notification = nil - end - end - - function weather.attach(obj) - obj:connect_signal("mouse::enter", function() - weather.show(0) - end) - obj:connect_signal("mouse::leave", function() - weather.hide() - end) - end - - function weather.forecast_update() - local cmd = string.format(forecast_call, city_id, units, lang, cnt, APPID) - helpers.async(cmd, function(f) - local pos, err - weather_now, pos, err = json.decode(f, 1, nil) - - if not err and type(weather_now) == "table" and tonumber(weather_now["cod"]) == 200 then - weather.notification_text = "" - for i = 1, weather_now["cnt"] do - weather.notification_text = weather.notification_text .. - notification_text_fun(weather_now["list"][i]) - if i < weather_now["cnt"] then - weather.notification_text = weather.notification_text .. "\n" - end - end - end - end) - end - - function weather.update() - local cmd = string.format(current_call, city_id, units, lang, APPID) - helpers.async(cmd, function(f) - local pos, err, icon - weather_now, pos, err = json.decode(f, 1, nil) - - if not err and type(weather_now) == "table" and tonumber(weather_now["cod"]) == 200 then - local sunrise = tonumber(weather_now["sys"]["sunrise"]) - local sunset = tonumber(weather_now["sys"]["sunset"]) - local icon = weather_now["weather"][1]["icon"] - local loc_now = os.time() - - if sunrise <= loc_now and loc_now <= sunset then - icon = string.gsub(icon, "n", "d") - else - icon = string.gsub(icon, "d", "n") - end - - weather.icon_path = icons_path .. icon .. ".png" - widget = weather.widget - settings() - else - weather.icon_path = icons_path .. "na.png" - weather.widget:set_markup(weather_na_markup) - end - - weather.icon:set_image(weather.icon_path) - end) - end - - if showpopup == "on" then weather.attach(weather.widget) end - - weather.timer = helpers.newtimer("weather-" .. city_id, timeout, weather.update, false, true) - weather.timer_forecast = helpers.newtimer("weather_forecast-" .. city_id, timeout, weather.forecast_update, false, true) - - return weather -end - -return factory diff --git a/awesome/.config/awesome/lain/wiki/Home.md b/awesome/.config/awesome/lain/wiki/Home.md deleted file mode 100755 index d098efe..0000000 --- a/awesome/.config/awesome/lain/wiki/Home.md +++ /dev/null @@ -1,43 +0,0 @@ -Welcome to the Lain wiki! - -If you spot a typo or have a suggestion to improve these pages, please notify me opening an [issue](https://github.com/lcpz/lain/issues) format. Thank you. - -Dependencies ------------- - -Package | Requested by | Reasons of choice ---- | --- | --- -[curl](https://curl.haxx.se) | `imap`, `mpd`, and `weather` widgets | 1. faster and simpler to use than [LuaSocket](https://github.com/diegonehab/luasocket); 2. it's in the core of almost every distro; 3. can be called [asynchronously](https://awesomewm.org/doc/api/libraries/awful.spawn.html#easy_async) -GLib >= 2.54 | `fs` widget | Pure Awesome/Lua implementation. - -The second dependency will be removed once all major distros update their Gio/Glib versions. - -Installation ------------- - -### Arch Linux - -[AUR package](https://aur.archlinux.org/packages/lain-git/) - -### Other distributions - -```shell -git clone https://github.com/lcpz/lain.git ~/.config/awesome/lain -``` - -Also available via [LuaRocks](https://luarocks.org/modules/aajjbb/lain). - -Usage --------- - -First, include it into your `rc.lua`: - -```lua -local lain = require("lain") -``` - -Then check out the submodules you want: - -- [Layouts](https://github.com/lcpz/lain/wiki/Layouts) -- [Widgets](https://github.com/lcpz/lain/wiki/Widgets) -- [Utilities](https://github.com/lcpz/lain/wiki/Utilities) diff --git a/awesome/.config/awesome/lain/wiki/Layouts.md b/awesome/.config/awesome/lain/wiki/Layouts.md deleted file mode 100755 index 0286d4b..0000000 --- a/awesome/.config/awesome/lain/wiki/Layouts.md +++ /dev/null @@ -1,255 +0,0 @@ - - lain/layout - . - |-- termfair - |-- termfair.center - |-- cascade - |-- cascade.tile - |-- centerwork - |-- centerwork.horizontal - -Usage -===== - -As usual, specify your favourites in `awful.layout.layouts`, or set them on specific tags with [`awful.layout.set`](https://awesomewm.org/doc/api/libraries/awful.layout.html#set). - -```lua -awful.layout.set(lain.layout.termfair, tag) -``` - -How do layouts work? -==================== - -`termfair` --------- - -This layout restricts the size of each window. Each window will have the -same width but is variable in height. Furthermore, windows are -left-aligned. The basic workflow is as follows (the number above the -screen is the number of open windows, the number in a cell is the fixed -number of a client): - - (1) (2) (3) - +---+---+---+ +---+---+---+ +---+---+---+ - | | | | | | | | | | | | - | 1 | | | -> | 2 | 1 | | -> | 3 | 2 | 1 | -> - | | | | | | | | | | | | - +---+---+---+ +---+---+---+ +---+---+---+ - - (4) (5) (6) - +---+---+---+ +---+---+---+ +---+---+---+ - | 4 | | | | 5 | 4 | | | 6 | 5 | 4 | - +---+---+---+ -> +---+---+---+ -> +---+---+---+ - | 3 | 2 | 1 | | 3 | 2 | 1 | | 3 | 2 | 1 | - +---+---+---+ +---+---+---+ +---+---+---+ - -The first client will be located in the left column. When opening -another window, this new window will be placed in the left column while -moving the first window into the middle column. Once a row is full, -another row above it will be created. - -Default number of columns and rows are respectively taken from `nmaster` -and `ncol` values in `awful.tag`, but you can set your own. - -For example, this sets `termfair` to 3 columns and at least 1 row: - -```lua -lain.layout.termfair.nmaster = 3 -lain.layout.termfair.ncol = 1 -``` - -`termfair.center` ----------- - -Similar to `termfair`, but with fixed number of vertical columns. Cols are centerded until there are `nmaster` columns, then windows are stacked as slaves, with possibly `ncol` clients per column at most. - - (1) (2) (3) - +---+---+---+ +-+---+---+-+ +---+---+---+ - | | | | | | | | | | | | | - | | 1 | | -> | | 1 | 2 | | -> | 1 | 2 | 3 | -> - | | | | | | | | | | | | | - +---+---+---+ +-+---+---+-+ +---+---+---+ - - (4) (5) - +---+---+---+ +---+---+---+ - | | | 3 | | | 2 | 4 | - + 1 + 2 +---+ -> + 1 +---+---+ - | | | 4 | | | 3 | 5 | - +---+---+---+ +---+---+---+ - -Like `termfair`, default number of columns and rows are respectively taken from `nmaster` -and `ncol` values in `awful.tag`, but you can set your own. - -For example, this sets `termfair.center` to 3 columns and at least 1 row: - -```lua -lain.layout.termfair.center.nmaster = 3 -lain.layout.termfair.center.ncol = 1 -``` - -`cascade` -------- - -Cascade all windows of a tag. - -You can control the offsets by setting these two variables: - -```lua -lain.layout.cascade.offset_x = 64 -lain.layout.cascade.offset_y = 16 -``` - -The following reserves space for 5 windows: - -```lua -lain.layout.cascade.nmaster = 5 -``` - -That is, no window will get resized upon the creation of a new window, -unless there's more than 5 windows. - -`cascade.tile` ------------ - -Similar to `awful.layout.suit.tile` layout, however, clients in the slave -column are cascaded instead of tiled. - -Left column size can be set, otherwise is controlled by `mwfact` of the -tag. Additional windows will be opened in another column on the right. -New windows are placed above old windows. - -Whether the slave column is placed on top of the master window or not is -controlled by the value of `ncol`. A value of 1 means "overlapping slave column" -and anything else means "don't overlap windows". - -Usage example: - -```lua -lain.layout.cascade.tile.offset_x = 2 -lain.layout.cascade.tile.offset_y = 32 -lain.layout.cascade.tile.extra_padding = 5 -lain.layout.cascade.tile.nmaster = 5 -lain.layout.cascade.tile.ncol = 2 -``` - -`extra_padding` reduces the size of the master window if "overlapping -slave column" is activated. This allows you to see if there are any -windows in your slave column. - -Setting `offset_x` to a very small value or even 0 is recommended to avoid wasting space. - -`centerwork` ----------- - -You start with one window, centered horizontally: - - +--------------------------+ - | +----------+ | - | | | | - | | | | - | | | | - | | MAIN | | - | | | | - | | | | - | | | | - | | | | - | +----------+ | - +--------------------------+ - -This is your main working window. You do most of the work right here. -Sometimes, you may want to open up additional windows. They're put on left and right, alternately. - - +--------------------------+ - | +---+ +----------+ +---+ | - | | | | | | | | - | | | | | | | | - | | | | | | | | - | +---+ | MAIN | +---+ | - | +---+ | | +---+ | - | | | | | | | | - | | | | | | | | - | | | | | | | | - | +---+ +----------+ +---+ | - +--------------------------+ - -*Please note:* If you use Awesome's default configuration, navigation in -this layout may be very confusing. How do you get from the main window -to satellite ones depends on the order in which the windows are opened. -Thus, use of `awful.client.focus.bydirection()` is suggested. -Here's an example: - -```lua -globalkeys = awful.util.table.join( - -- [...] - awful.key({ modkey }, "j", - function() - awful.client.focus.bydirection("down") - if client.focus then client.focus:raise() end - end), - awful.key({ modkey }, "k", - function() - awful.client.focus.bydirection("up") - if client.focus then client.focus:raise() end - end), - awful.key({ modkey }, "h", - function() - awful.client.focus.bydirection("left") - if client.focus then client.focus:raise() end - end), - awful.key({ modkey }, "l", - function() - awful.client.focus.bydirection("right") - if client.focus then client.focus:raise() end - end), - -- [...] -) -``` - -`centerwork.horizontal` ------------ - -Same as `centerwork`, except that the main -window expands horizontally, and the additional windows -are put ontop/below it. Useful if you have a screen turned 90°. - -Pre 4.0 `uselesstile` patches -============================= - -In branch 3.5, this module provided useless gaps layouts. Since useless gaps have been implemented in Awesome 4.0, those layouts have been removed. - -Following are a couple of `uselesstile` variants that were not part of lain. They are kept only for reference and are not supported. - -Xmonad-like ------------ - -If you want to have `awful.layout.suit.tile` behave like xmonad, with internal gaps two times wider than external ones, download [this](https://gist.github.com/lcpz/9e56dcfbe66bfe14967c) as `lain/layout/uselesstile`. - -Inverted master ---------------- - -Want to invert master window position? Use [this](https://gist.github.com/lcpz/c59dc59c9f99d98218eb) version. You can set `single_gap` with `width` and `height` in your `theme.lua`, in order to define the window geometry when there's only one client, otherwise it goes maximized. An example: - - theme.single_gap = { width = 600, height = 100 } - -What about layout icons? -======================== - -They are located in ``lain/icons/layout``. - -To use them, define new `layout_*` variables in your ``theme.lua``. For instance: - -```lua -theme.lain_icons = os.getenv("HOME") .. - "/.config/awesome/lain/icons/layout/default/" -theme.layout_termfair = theme.lain_icons .. "termfair.png" -theme.layout_centerfair = theme.lain_icons .. "centerfair.png" -- termfair.center -theme.layout_cascade = theme.lain_icons .. "cascade.png" -theme.layout_cascadetile = theme.lain_icons .. "cascadetile.png" -- cascade.tile -theme.layout_centerwork = theme.lain_icons .. "centerwork.png" -theme.layout_centerworkh = theme.lain_icons .. "centerworkh.png" -- centerwork.horizontal -``` - -Credit goes to [Nicolas Estibals](https://github.com/nestibal) for creating -layout icons for default theme. - -You can use them as a template for your custom versions. \ No newline at end of file diff --git a/awesome/.config/awesome/lain/wiki/Utilities.md b/awesome/.config/awesome/lain/wiki/Utilities.md deleted file mode 100755 index 4ec3057..0000000 --- a/awesome/.config/awesome/lain/wiki/Utilities.md +++ /dev/null @@ -1,338 +0,0 @@ -Quake ------ - -A Quake-like dropdown container for your favourite application. - -**Usage** - -Define it globally to have a single instance for all screens: - -```lua -local quake = lain.util.quake() -``` - -or define it in `connect_for_each_screen` to have one instance for each screen: - -```lua -awful.screen.connect_for_each_screen(function(s) - -- Quake application - s.quake = lain.util.quake() - -- [...] -``` - -**Keybinding example** - -If using a global instance: -```lua -awful.key({ modkey, }, "z", function () quake:toggle() end), -``` - -If using a per-screen instance: -```lua -awful.key({ modkey, }, "z", function () awful.screen.focused().quake:toggle() end), -``` - -**Input table** - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`app` | client to spawn | string | "xterm" -`name` | client name | string | "QuakeDD" -`argname` | how to specify client name | string | "-name %s" -`extra` | extra `app` arguments | string | empty string -`border` | border width | integer | 1 -`visible` | initially visible | boolean | false -`followtag` | always spawn on currently focused screen | boolean | false -`overlap` | Overlap the wibox or not | boolean | false -`settings` | Additional settings to make on the client | function | `nil` -`screen` | screen where to spawn the client | integer | `awful.screen.focused()` -`height` | dropdown client height | float in [0,1] or exact pixels number | 0.25 -`width` | dropdown client width | float in [0,1] or exact pixels number | 1 -`vert` | vertical position | string, possible values: "top", "bottom", "center" | "top" -`horiz` | horizontal position | string, possible values: "left", "right", "center" | "left" - -`height` and `width` express a fraction of the workspace. - -`settings` is a function which takes the client as input, and can be used to customize its properties. For instance: - -```lua --- set the client sticky -s.quake = lain.util.quake { settings = function(c) c.sticky = true end } -``` - -Read [here](https://awesomewm.org/doc/api/classes/client.html#Object_properties) for the complete list of properties. - -**Notes** - -* [Does not work](https://github.com/lcpz/lain/issues/358) with `gnome-terminal`, `konsole`, or any other terminal which is strictly designed for a Desktop Environment. Just pick a better terminal, [there's plenty](https://wiki.archlinux.org/index.php/List_of_applications#Terminal_emulators). -* Set `followtag = true` if [experiencing issues with multiple screens](https://github.com/lcpz/lain/issues/346). -* If you have a `awful.client.setslave` rule for your application, ensure you use an exception for `QuakeDD` (or your defined `name`). Otherwise, you may run into problems with focus. -* If you are using a VTE-based terminal like `termite`, be sure to set [`argname = "--name %s"`](https://github.com/lcpz/lain/issues/211). - -Separators ----------- - -Adds Cairo separators. - -```lua -local separators = lain.util.separators -``` - -A separator function `separators.separator` takes two color arguments, defined as strings. `"alpha"` argument is allowed. Example: - -```lua -arrl_dl = separators.arrow_left(beautiful.bg_focus, "alpha") -arrl_ld = separators.arrow_left("alpha", beautiful.bg_focus) -``` - -You can customize height and width by setting `separators_height` and `separators_width` in your `theme.lua`. Default values are 0 and 9, respectively. - -List of functions: - - +-- separators - | - |`-- arrow_right() Draw a right arrow. - `-- arrow_left() Draw a left arrow. - -markup ------- - -Mades markup easier. - -```lua -local markup = lain.util.markup -``` - -List of functions: - - +-- markup - | - |`-- bold() Set bold. - |`-- italic() Set italicized text. - |`-- strike() Set strikethrough text. - |`-- underline() Set underlined text. - |`-- monospace() Set monospaced text. - |`-- big() Set bigger text. - |`-- small() Set smaller text. - |`-- font() Set the font of the text. - |`-- font() Set the font of the text. - |`-- color() Set background and foreground color. - |`-- fontfg() Set font and foreground color. - |`-- fontbg() Set font and background color. - `-- fontcolor() Set font, plus background and foreground colors. - | - |`--+ bg - | | - | `-- color() Set background color. - | - `--+ fg - | - `-- color() Set foreground color. - -they all take one argument, which is the text to markup, except the following: - -```lua -markup.font(font, text) -markup.color(fg, bg, text) -markup.fontfg(font, fg, text) -markup.fontbg(font, bg, text) -markup.fontcolor(font, fg, bg, text) -markup.fg.color(color, text) -markup.bg.color(color, text) -``` - -Dynamic tagging ---------------- - -That is: - -- add a new tag; -- rename current tag; -- move current tag; -- delete current tag. - -If you delete a tag, any rule set on it shall be broken, so be careful. - -Use it with key bindings like these: - -```lua -awful.key({ modkey, "Shift" }, "n", function () lain.util.add_tag(mylayout) end), -awful.key({ modkey, "Shift" }, "r", function () lain.util.rename_tag() end), -awful.key({ modkey, "Shift" }, "Left", function () lain.util.move_tag(1) end), -- move to next tag -awful.key({ modkey, "Shift" }, "Right", function () lain.util.move_tag(-1) end), -- move to previous tag -awful.key({ modkey, "Shift" }, "d", function () lain.util.delete_tag() end), -``` - -The argument in `lain.util.add_tag` represents the tag layout, and is optional: if not present, it will be defaulted to `awful.layout.suit.tile`. - -Useless gaps resize ---------------------- - -Changes `beautiful.useless_gaps` on the fly. - -```lua -lain.util.useless_gap_resize(thatmuch, s, t) -``` - -The argument `thatmuch` is the number of pixel to add to/substract from gaps (integer). - -The arguments `s` and `t` are the `awful.screen` and `awful.tag` in which you want to change the gap. They are optional. - -Following are example keybindings for changing client gaps on current screen and tag. - -Example 1: - -```lua --- On the fly useless gaps change -awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end), -awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) end), -``` - -where `altkey = Mod1`. Example 2: - -```lua -mywidget:buttons(awful.util.table.join ( - awful.button({}, 4, function() lain.util.useless_gaps_resize(-1) end), - awful.button({}, 5, function() lain.util.useless_gaps_resize(1) end) - end) -)) -``` - -so when hovering the mouse over `mywidget`, you can adjust useless gaps size by scrolling with the mouse wheel. - -tag\_view\_nonempty -------------------- - -This function lets you jump to the next/previous non-empty tag. -It takes two arguments: - -* `direction`: `1` for next non-empty tag, `-1` for previous. -* `sc`: Screen which the taglist is in. Default is `mouse.screen` or `1`. This - argument is optional. - -You can use it with key bindings like these: - -```lua --- Non-empty tag browsing -awful.key({ altkey }, "Left", function () lain.util.tag_view_nonempty(-1) end), -awful.key({ altkey }, "Right", function () lain.util.tag_view_nonempty(1) end), -``` - -where `altkey = "Mod1"`. - -magnify\_client ---------------- - -Set a client to floating and resize it in the same way the "magnifier" -layout does it. Place it on the "current" screen (derived from the mouse -position). This allows you to magnify any client you wish, regardless of -the currently used layout. Use it with a client keybinding like this: - -```lua -clientkeys = awful.util.table.join( - -- [...] - awful.key({ modkey, "Control" }, "m", lain.util.magnify_client), - -- [...] -) -``` - -If you want to "de-magnify" it, just retype the keybinding. - -If you want magnified client to respond to `incmwfact`, read [here](https://github.com/lcpz/lain/issues/195). - -menu\_clients\_current\_tags ----------------------------- - -Similar to `awful.menu.clients`, but this menu only shows the clients -of currently visible tags. Use it with a key binding like this: - -```lua -awful.key({ "Mod1" }, "Tab", function() - lain.util.menu_clients_current_tags({ width = 350 }, { keygrabber = true }) -end), -``` - -menu\_iterator --------------- - -A generic menu utility which enables iteration over lists of possible -actions to execute. The perfect example is a menu for choosing what -configuration to apply to X with `xrandr`, as suggested on the [Awesome wiki page](https://awesomewm.org/recipes/xrandr). - -

- -
An example Synergy menu, courtesy of sim590 -

- -You can either manually create a menu by defining a table in this format: - -```lua -{ { "choice description 1", callbackFuction1 }, { "choice description 2", callbackFunction2 }, ... } -``` - -or use `lain.util.menu_iterator.menu`. Once you have your menu, use it with `lain.menu_iterator.iterate`. - -### Input tables - -**lain.menu_iterator.iterate** - -| Argument | Description | Type -|---|---| --- -| `menu` | the menu to iterate on | table -| `timeout` | time (in seconds) to wait on a choice before the choice is accepted | integer (default: 4) -| `icon` | path to the icon to display in `naughty.notify` window | string - -**lain.menu_iterator.menu** - -| Argument | Description | Type -|---|---| --- -`choices` | list of choices (e.g., `{ "choice1", "choice2", ... }`) | array of strings -`name` | name of the program related to this menu | string -`selected_cb` | callback to execute for each selected choice, it takes one choice (string) as argument; can be `nil` (no action to execute) | function -`rejected_cb` | callback to execute for all rejected choices (the remaining choices, once one is selected), it takes one choice (string) as argument; can be `nil` (no action to execute) | function -`extra_choices` | more choices to be added to the menu; unlike `choices`, these ones won't trigger `rejected_cb` | array of `{ choice, callback }` pairs, where `choice` is a string and `callback` is a function -`combination` | how choices have to be combined in the menu; possible values are: "single" (default), the set of possible choices will simply be the input set ; "powerset", the set of possible choices will be the [power set](https://en.wikipedia.org/wiki/Power_set) of the input set | string - -### Examples - -A simple example is: - -```lua -local mymenu_iterable = lain.util.menu_iterator.menu { - choices = {"My first choice", "My second choice"}, - name = "My awesome program", - selected_cb = function(choice) - -- do something with selected choice - end, - rejected_cb = function(choice) - -- do something with every rejected choice - end -} -``` - -The variable `mymenu_iterable` is a menu compatible with the function `lain.util.menu_iterator.iterate`, which will iterate over it and displays notification with `naughty.notify` every time it is called. You can use it like this: - -```lua -local confirm_timeout = 5 -- time to wait before confirming the menu selection -local my_notify_icon = "/path/to/icon" -- the icon to display in the notification -lain.util.menu_iterator.iterate(mymenu_iterable, confirm_timeout, my_notify_icon) -``` - -Once `confirm_timeout` has passed without anymore calls to `iterate`, the choice is made and the associated callbacks (both for selected and rejected choices) are spawned. - -A useful practice is to add a `Cancel` option as an extra choice for canceling a menu selection. Extending the above example: - -```lua -local mymenu_iterable = lain.util.menu_iterator.menu { - choices = {"My first choice", "My second choice"}, - name = "My awesome program", - selected_cb = function(choice) - -- do something with selected choice - end, - rejected_cb = function(choice) - -- do something with every rejected choice - end - -- nil means no action to do - extra_choices = { {"Cancel"}, nil } -} -``` diff --git a/awesome/.config/awesome/lain/wiki/Widgets.md b/awesome/.config/awesome/lain/wiki/Widgets.md deleted file mode 100755 index 34f518d..0000000 --- a/awesome/.config/awesome/lain/wiki/Widgets.md +++ /dev/null @@ -1,55 +0,0 @@ -# Usage - -Every lain widget is a table. - -A lain widget is generated by a `function`. - -The `function` signature, input and output arguments can be found in the [related wiki entry](https://github.com/lcpz/lain/wiki/Widgets#index). - -Every lain widget contains a `wibox.widget`, which is updated by a timed function. To access the widget, use the field `widget`, while to access the timed function, use the field `update`. Some lain widgets may also have an `icon` field, which is a `wibox.widget.imagebox`, and/or a `timer` field, which is the `gears.timer` on `update`. - -Every `function` may take either a table or a list of variables as input. - -If the input is a table, you must define a function variable called `settings` in it. There you will be able to define `widget` appearance. - -For instance, if `widget` is a textbox, to markup it call `widget:set_markup(...)` within `settings`. - -In the scope of `settings` you can use predefined arguments, which are specified in the wiki entries. - -Example of a lain widget: - -```lua -local cpu = lain.widget.cpu { - settings = function() - widget:set_markup("Cpu " .. cpu_now.usage) - end -} --- to access the widget: cpu.widget -``` - -If you want to see some applications, check [awesome-copycats](https://github.com/lcpz/awesome-copycats). - -# Index - -- [alsa](https://github.com/lcpz/lain/wiki/alsa) -- [alsabar](https://github.com/lcpz/lain/wiki/alsabar) -- [bat](https://github.com/lcpz/lain/wiki/bat) -- [cal](https://github.com/lcpz/lain/wiki/cal) -- [cpu](https://github.com/lcpz/lain/wiki/cpu) -- [fs](https://github.com/lcpz/lain/wiki/fs) -- [imap](https://github.com/lcpz/lain/wiki/imap) -- [mem](https://github.com/lcpz/lain/wiki/mem) -- [mpd](https://github.com/lcpz/lain/wiki/mpd) -- [net](https://github.com/lcpz/lain/wiki/net) -- [pulse](https://github.com/lcpz/lain/wiki/pulse) -- [pulsebar](https://github.com/lcpz/lain/wiki/pulsebar) -- [sysload](https://github.com/lcpz/lain/wiki/sysload) -- [temp](https://github.com/lcpz/lain/wiki/temp) -- [weather](https://github.com/lcpz/lain/wiki/weather) - -## Users contributed - -- [moc](https://github.com/lcpz/lain/wiki/moc) -- [redshift](https://github.com/lcpz/lain/wiki/redshift) -- [task](https://github.com/lcpz/lain/wiki/task) -- [tp_smapi](https://github.com/lcpz/lain/wiki/tp_smapi) diff --git a/awesome/.config/awesome/lain/wiki/_Footer.md b/awesome/.config/awesome/lain/wiki/_Footer.md deleted file mode 100755 index b64f13b..0000000 --- a/awesome/.config/awesome/lain/wiki/_Footer.md +++ /dev/null @@ -1 +0,0 @@ -[Home](https://github.com/lcpz/lain/wiki) • [Layouts](https://github.com/lcpz/lain/wiki/Layouts) • [Widgets](https://github.com/lcpz/lain/wiki/Widgets) • [Utilities](https://github.com/lcpz/lain/wiki/Utilities) diff --git a/awesome/.config/awesome/lain/wiki/_Sidebar.md b/awesome/.config/awesome/lain/wiki/_Sidebar.md deleted file mode 100755 index 0289783..0000000 --- a/awesome/.config/awesome/lain/wiki/_Sidebar.md +++ /dev/null @@ -1,26 +0,0 @@ -* [Home](https://github.com/lcpz/lain/wiki/Home) -* [Layouts](https://github.com/lcpz/lain/wiki/Layouts) - * [Usage](https://github.com/lcpz/lain/wiki/Layouts#Usage) - * [How do layouts work?](https://github.com/lcpz/lain/wiki/Layouts#how-do-layouts-work) - * [termfair](https://github.com/lcpz/lain/wiki/Layouts#termfair) - * [centerfair](https://github.com/lcpz/lain/wiki/Layouts#termfaircenter) - * [cascade](https://github.com/lcpz/lain/wiki/Layouts#cascade) - * [cascadetile](https://github.com/lcpz/lain/wiki/Layouts#cascadetile) - * [centerwork](https://github.com/lcpz/lain/wiki/Layouts#centerwork) - * [centerworkh](https://github.com/lcpz/lain/wiki/Layouts#centerworkhorizontal) - * [Pre 4.0 uselesstile patches](https://github.com/lcpz/lain/wiki/Layouts#pre-40-uselesstile-patches) - * [What about layout icons?](https://github.com/lcpz/lain/wiki/Layouts#what-about-layout-icons) -* [Widgets](https://github.com/lcpz/lain/wiki/Widgets) - * [Usage](https://github.com/lcpz/lain/wiki/Widgets#usage) - * [Index](https://github.com/lcpz/lain/wiki/Widgets#index) - * [Users contributed](https://github.com/lcpz/lain/wiki/Widgets#users-contributed) -* [Utilities](https://github.com/lcpz/lain/wiki/Utilities) - * [quake](https://github.com/lcpz/lain/wiki/Utilities#quake) - * [separators](https://github.com/lcpz/lain/wiki/Utilities#separators) - * [markup](https://github.com/lcpz/lain/wiki/Utilities#markup) - * [dynamic tagging](https://github.com/lcpz/lain/wiki/Utilities#dynamic-tagging) - * [useless_gaps_resize](https://github.com/lcpz/lain/wiki/Utilities#useless-gaps-resize) - * [tag_view_non_empty](https://github.com/lcpz/lain/wiki/Utilities#tag_view_nonempty) - * [magnify_client](https://github.com/lcpz/lain/wiki/Utilities#magnify_client) - * [menu_clients_current_tags](https://github.com/lcpz/lain/wiki/Utilities#menu_clients_current_tags) - * [menu_iterator](https://github.com/lcpz/lain/wiki/Utilities#menu_iterator) diff --git a/awesome/.config/awesome/lain/wiki/alsa.md b/awesome/.config/awesome/lain/wiki/alsa.md deleted file mode 100755 index 9c1e5c4..0000000 --- a/awesome/.config/awesome/lain/wiki/alsa.md +++ /dev/null @@ -1,148 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows ALSA volume. - -```lua -local volume = lain.widget.alsa() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 5 -`cmd` | Alsa mixer command | string | "amixer" -`channel` | Mixer channel | string | "Master" -`togglechannel` | Toggle channel | string | `nil` -`settings` | User settings | function | empty function - -`cmd` is useful if you need to pass additional arguments to amixer. For instance, you may want to define `cmd = "amixer -c X"` in order to set amixer with card `X`. - -`settings` can use the following variables: - -Variable | Meaning | Type | Values ---- | --- | --- | --- -`volume_now.level` | Volume level | integer | 0-100 -`volume_now.status` | Device status | string | "on", "off" - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`channel` | ALSA channel | string -`update` | Update `widget` | function - -## Toggle channel - -In case mute toggling can't be mapped to master channel (this happens, for instance, when you are using an HDMI output), define togglechannel as your S/PDIF device. You can get the device ID with `scontents` command. - -For instance, if card number is 1 and S/PDIF number is 3: - -```shell -$ amixer -c 1 scontents -Simple mixer control 'Master',0 - Capabilities: volume - Playback channels: Front Left - Front Right - Capture channels: Front Left - Front Right - Limits: 0 - 255 - Front Left: 255 [100%] - Front Right: 255 [100%] -Simple mixer control 'IEC958',0 - Capabilities: pswitch pswitch-joined - Playback channels: Mono - Mono: Playback [on] -Simple mixer control 'IEC958',1 - Capabilities: pswitch pswitch-joined - Playback channels: Mono - Mono: Playback [on] -Simple mixer control 'IEC958',2 - Capabilities: pswitch pswitch-joined - Playback channels: Mono - Mono: Playback [on] -Simple mixer control 'IEC958',3 - Capabilities: pswitch pswitch-joined - Playback channels: Mono - Mono: Playback [on] -``` - -you have to set `togglechannel = "IEC958,3"`. - -## Buttons - -If you want buttons, just add the following after your widget in `rc.lua`. - -```lua -volume.widget:buttons(awful.util.table.join( - awful.button({}, 1, function() -- left click - awful.spawn(string.format("%s -e alsamixer", terminal)) - end), - awful.button({}, 2, function() -- middle click - os.execute(string.format("%s set %s 100%%", volume.cmd, volume.channel)) - volume.update() - end), - awful.button({}, 3, function() -- right click - os.execute(string.format("%s set %s toggle", volume.cmd, volume.togglechannel or volume.channel)) - volume.update() - end), - awful.button({}, 4, function() -- scroll up - os.execute(string.format("%s set %s 1%%+", volume.cmd, volume.channel)) - volume.update() - end), - awful.button({}, 5, function() -- scroll down - os.execute(string.format("%s set %s 1%%-", volume.cmd, volume.channel)) - volume.update() - end) -)) -``` - -## Keybindings - -You can control the widget with keybindings like these: - -```lua --- ALSA volume control -awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer set %s 1%%+", volume.channel)) - volume.update() - end), -awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer set %s 1%%-", volume.channel)) - volume.update() - end), -awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer set %s toggle", volume.togglechannel or volume.channel)) - volume.update() - end), -awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer set %s 100%%", volume.channel)) - volume.update() - end), -awful.key({ altkey, "Control" }, "0", - function () - os.execute(string.format("amixer set %s 0%%", volume.channel)) - volume.update() - end), -``` - -where `altkey = "Mod1"`. - -### Muting with PulseAudio - -If you are using this widget in conjuction with PulseAudio, add the option `-D pulse` to the muting keybinding, like this: - -```lua -awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer -D pulse set %s toggle", volume.togglechannel or volume.channel)) - volume.update() - end), -``` diff --git a/awesome/.config/awesome/lain/wiki/alsabar.md b/awesome/.config/awesome/lain/wiki/alsabar.md deleted file mode 100755 index a986d8f..0000000 --- a/awesome/.config/awesome/lain/wiki/alsabar.md +++ /dev/null @@ -1,108 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows ALSA volume with a progressbar; provides tooltips and notifications. - -```lua -local volume = lain.widget.alsabar() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 5 -`settings` | User settings | function | empty function -`width` | Bar width | number | 63 -`height` | Bar height | number | 1 -`margins` | Bar margins | number | 1 -`paddings` | Bar paddings | number | 1 -`ticks` | Set bar ticks on | boolean | false -`ticks_size` | Ticks size | integer | 7 -`tick` | String for a notification tick | string | "|" -`tick_pre` | String for the left notification delimeter | string | "[" -`tick_post` | String for the right notification delimeter | string | "]" -`tick_none` | String for an empty notification tick | string | " " -`cmd` | ALSA mixer command | string | "amixer" -`channel` | Mixer channel | string | "Master" -`togglechannel` | Toggle channel | string | `nil` -`tick` | The character usef for ticks in the notification | string | "|" -`colors` | Bar colors | table | see [Default colors](https://github.com/lcpz/lain/wiki/alsabar#default-colors) -`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/alsabar#default-notification_preset) -`followtag` | Display the notification on currently focused screen | boolean | false - -`cmd` is useful if you need to pass additional arguments to `amixer`. For instance, you may want to define `cmd = "amixer -c X"` in order to set amixer with card `X`. - -In case mute toggling can't be mapped to master channel (this happens, for instance, when you are using an HDMI output), define `togglechannel` as your S/PDIF device. Read [`alsa`](https://github.com/lcpz/lain/wiki/alsa#toggle-channel) page to know how. - -To set the maximum number of ticks to display in the notification, define `max_ticks` (integer) in `notification_preset`. - -`settings` can use the following variables: - -Variable | Meaning | Type | Values ---- | --- | --- | --- -`volume_now.level` | Volume level | integer | 0-100 -`volume_now.status` | Device status | string | "on", "off" - -With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen. - -### Default colors - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`background` | Bar backgrund color | string | "#000000" -`mute` | Bar mute color | string | "#EB8F8F" -`unmute` | Bar unmute color | string | "#A4CE8A" - -### Default `notification_preset` - -```lua -notification_preset = { - font = "Monospace 10" -} -``` - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`bar` | The widget | `wibox.widget.progressbar` -`channel` | ALSA channel | string -`notify` | The notification | function -`update` | Update `bar` | function -`tooltip` | The tooltip | `awful.tooltip` - -## Buttons - -If you want buttons, just add the following after your widget in `rc.lua`. - -```lua -volume.bar:buttons(awful.util.table.join( - awful.button({}, 1, function() -- left click - awful.spawn(string.format("%s -e alsamixer", terminal)) - end), - awful.button({}, 2, function() -- middle click - os.execute(string.format("%s set %s 100%%", volume.cmd, volume.channel)) - volume.update() - end), - awful.button({}, 3, function() -- right click - os.execute(string.format("%s set %s toggle", volume.cmd, volume.togglechannel or volume.channel)) - volume.update() - end), - awful.button({}, 4, function() -- scroll up - os.execute(string.format("%s set %s 1%%+", volume.cmd, volume.channel)) - volume.update() - end), - awful.button({}, 5, function() -- scroll down - os.execute(string.format("%s set %s 1%%-", volume.cmd, volume.channel)) - volume.update() - end) -)) -``` - -## Keybindings - -Read [here](https://github.com/lcpz/lain/wiki/alsa#keybindings). If you want notifications, use `volume.notify()` instead of `volume.update()`. diff --git a/awesome/.config/awesome/lain/wiki/bat.md b/awesome/.config/awesome/lain/wiki/bat.md deleted file mode 100755 index fb98166..0000000 --- a/awesome/.config/awesome/lain/wiki/bat.md +++ /dev/null @@ -1,100 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows the remaining time and percentage capacity of your laptop battery, as well -as the current wattage. Multiple batteries are supported. - -Displays a notification when battery is fully charged, low, or critical. - -```lua -local mybattery = lain.widget.bat() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 30 -`pspath` | Power supply directory path | string | "/sys/class/power_supply/" -`battery` | Single battery id | string | autodetected -`batteries` | Multiple batteries id table | table of strings | autodetected -`ac` | AC | string | autodetected -`notify` | Show notification popups | string | "on" -`full_notify` | Show a notification popup when the battery's fully charged | string | inherited value from `notify` -`n_perc` | Percentages assumed for critical and low battery levels | table of integers | `{5, 15}` -`settings` | User settings | function | empty function - -The widget will try to autodetect `battery`, `batteries` and `ac`. If something -goes wrong, you will have to define them manually. In that case, you only have -to define one between `battery` and `batteries`. If you have one battery, you -can either use `args.battery = "BAT*"` or `args.batteries = {"BAT*"}`, where `BAT*` -is the identifier of your battery in `pspath` (do not use it as a wildcard). -Of course, if you have multiple batteries, you need to use the latter option. - -To disable notifications, set `notify` to `"off"`. - -If you define `pspath`, **be sure** to not forget the final slash (/). - -`settings` can use the `bat_now` table, which contains the following strings: - -- `status`, general status ("N/A", "Discharging", "Charging", "Full"); -- `n_status[i]`, i-th battery status (like above); -- `ac_status`, AC-plug flag (0 if cable is unplugged, 1 if plugged, "N/A" otherwise); -- `perc`, total charge percentage (integer between 0 and 100 or "N/A"); -- `n_perc[i]`, i-th battery charge percentage (like above); -- `time`, time remaining until charge if charging, until discharge if discharging (HH:MM string or "N/A"); -- `watt`, battery watts (float with 2 decimals). - -and can modify the following three tables, which will be the preset for the naughty notifications: -* `bat_notification_charged_preset` (used if battery is fully charged and connected to AC) -* `bat_notification_low_preset` (used if battery charge level <= 15) -* `bat_notification_critical_preset` (used if battery charge level <= 5) - -Check [here](https://awesomewm.org/doc/api/libraries/naughty.html#notify) for -the list of variables they can contain. Default definitions: - -```lua -bat_notification_charged_preset = { - title = "Battery full", - text = "You can unplug the cable", - timeout = 15, - fg = "#202020", - bg = "#CDCDCD" - } - -``` - -```lua -bat_notification_low_preset = { - title = "Battery low", - text = "Plug the cable!", - timeout = 15, - fg = "#202020", - bg = "#CDCDCD" -} -``` -```lua -bat_notification_critical_preset = { - title = "Battery exhausted", - text = "Shutdown imminent", - timeout = 15, - fg = "#000000", - bg = "#FFFFFF" -} -``` - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`update` | Update `widget` | function - -The `update` function can be used to refresh the widget before `timeout` expires. - -## Note - -Alternatively, you can try the [`upower` recipe](https://awesomewm.org/recipes/watch). diff --git a/awesome/.config/awesome/lain/wiki/cal.md b/awesome/.config/awesome/lain/wiki/cal.md deleted file mode 100755 index 3e14bf5..0000000 --- a/awesome/.config/awesome/lain/wiki/cal.md +++ /dev/null @@ -1,83 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Creates a calendar notification that can be attached to widgets. - -This is a simpler but [faster](https://github.com/awesomeWM/awesome/issues/1861) -alternative to [`awful.widget.calendar_popup`](https://awesomewm.org/doc/api/classes/awful.widget.calendar_popup.html), which emulates UNIX's `cal`. - -```lua -local mycal = lain.widget.cal() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`attach_to` | List of widgets | table | empty table -`week_start` | First day of the week | integer | 2 (Monday) -`three` | Display three months spanning the date | boolean | false -`followtag` | Display the notification on currently focused screen | boolean | false -`week_number` | Display the week number | string ("none", "left" or "right") | "none" -`week_number_format` | Week number format | string | `"%3d \| "` for "left", `"\| %-3d"` for "right" -`icons` | Path to calendar icons | string | [icons/cal/white/](https://github.com/lcpz/lain/tree/master/icons/cal/white) -`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/calendar#default-notification_preset) - -Set `attach_to` as the list of widgets to which you want to attach the calendar, like this: - -```lua -local mycal = lain.widget.cal { - attach_to = { mywidget1, mywidget2, ... }, - -- [...] -} -``` - -For every widget in `attach_to`: - -- Left click / scroll down: switch to previous month. -- Middle click show current month. -- Right click / scroll up: switch to next month. - -With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen. - -### Default `notification_preset` - -```lua -notification_preset = { - font = "Monospace 10", - fg = "#FFFFFF", - bg = "#000000" -} -``` - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`attach` | Attach the calendar to an input widget | function -`show` | Show calendar | function -`hide` | Hide calendar | function - -`attach` takes as argument any widget you want to attach the calendar to, while -`show` takes as optional argument an integer to indicate the seconds to timeout. - -## Keybinding - -```lua -awful.key({ altkey }, "c", function () mycal.show(7) end) -``` - -Where `altkey = "Mod1"`. - -## Notes - -* Naughty notifications require `notification_preset.font` to be **monospaced**, in order to correctly display the output. -* If you want to [disable notification icon](https://github.com/lcpz/lain/pull/351), set `icons = ""` in the input table. -* If you want to localise the calendar, put `os.setlocale(os.getenv("LANG"))` in your `rc.lua`. -* If you want to get notifications [only with mouse clicks](https://github.com/lcpz/lain/issues/320) on a given widget, use this code: - ```lua - yourwidget:disconnect_signal("mouse::enter", mycal.hover_on) - ``` diff --git a/awesome/.config/awesome/lain/wiki/cpu.md b/awesome/.config/awesome/lain/wiki/cpu.md deleted file mode 100755 index c13d05a..0000000 --- a/awesome/.config/awesome/lain/wiki/cpu.md +++ /dev/null @@ -1,30 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows the current CPU usage, both in general and per core. - -```lua -local mycpu = lain.widget.cpu() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 2 -`settings` | User settings | function | empty function - -`settings` can use these strings: - -* `cpu_now.usage`, the general use percentage; -* `cpu_now[i].usage`, the i-th core use percentage, with `i` starting from 1. - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`update` | Update `widget` | function \ No newline at end of file diff --git a/awesome/.config/awesome/lain/wiki/fs.md b/awesome/.config/awesome/lain/wiki/fs.md deleted file mode 100755 index 47d6bb2..0000000 --- a/awesome/.config/awesome/lain/wiki/fs.md +++ /dev/null @@ -1,82 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows file systems informations. - -If a partition is given in input, a notification will be displayed when it is almost full. - -```lua -local mypartition = lain.widget.fs() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 600 -`partition` | (Optional) Partition to watch: a notification will be displayed when full | string | `nil` -`threshold` | Percentage threshold at which the notification is triggered | integer | 99 -`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/fs#default-notification_preset) -`followtag` | Display the notification on currently focused screen | boolean | false -`showpopup` | Display popups with mouse hovering | string, possible values: "on", "off" | "on" -`settings` | User settings | function | empty function - -`settings` can use the table `fs_now`, which contains a string entry for each file system path available. For instance, root infos are located in the variable `fs_now["/"]`. Every entry in this table have the following variables: - -Variable | Meaning | Type ---- | --- | --- -`units` | (multiple of) units used | string ("Kb", "Mb", "Gb", and so on) -`percentage` | the used percentage | integer -`size` | size in `units` of the given fs | float -`used` | amount of space used in the given fs, expressed in `units` | float -`free` | amount of free space in the given fs, expressed in `units` | float - -Usage example: - -```lua --- shows used (percentage) and remaining space in home partition -local fsroothome = lain.widget.fs({ - settings = function() - widget:set_text("/home: " .. fs_now["/home"].percentage .. "% (" .. - fs_now["/home"].free .. " " .. fs_now["/home"].units .. " left)") - end -}) --- output example: "/home: 37% (239.4 Gb left)" -``` - -With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen. - -### Default `notification_preset` - -```lua -notification_preset = { - font = "Monospace 10", - fg = "#FFFFFF", - bg = "#000000" -} -``` - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`show` | The notification | function - -You can display the notification with a key binding like this: - -```lua -awful.key({ altkey }, "h", function () mypartition.show(seconds, scr) end), -``` - -where ``altkey = "Mod1"`` and ``show`` arguments, both optionals, are: - -* `seconds`, notification time in seconds -* `scr`, screen which to display the notification in - -## Note - -Naughty notifications require `notification_preset.font` to be **monospaced**, in order to correctly display the output. diff --git a/awesome/.config/awesome/lain/wiki/imap.md b/awesome/.config/awesome/lain/wiki/imap.md deleted file mode 100755 index 683777e..0000000 --- a/awesome/.config/awesome/lain/wiki/imap.md +++ /dev/null @@ -1,115 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows mails count fetching over IMAP. - -```lua -local myimap = lain.widget.imap(args) -``` - -New mails are notified like this: - - +--------------------------------------------+ - | +---+ | - | |\ /| donald@disney.org has 3 new messages | - | +---+ | - +--------------------------------------------+ - -## Input table - -Required parameters are: - -Variable | Meaning | Type ---- | --- | --- -`server` | Mail server | string -`mail` | User mail | string -`password` | User password | string - -while the optional are: - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`port` | IMAP port | integer | 993 -`timeout` | Refresh timeout (in seconds) | integer | 60 -`pwdtimeout` | Timeout for password retrieval function (see [here](https://github.com/lcpz/lain/wiki/imap#password-security)) | integer | 10 -`is_plain` | Define whether `password` is a plain password (true) or a command that retrieves it (false) | boolean | false -`followtag` | Notification behaviour | boolean | false -`notify` | Show notification popups | string | "on" -`settings` | User settings | function | empty function - -`settings` can use `imap_now` table, which contains the following non negative integers: - -- `["MESSAGES"]` -- `["RECENT"]` -- `["UNSEEN"]` - -example of fetch: `total = imap_now["MESSAGES"]`. For backwards compatibility, `settings` can also use `mailcount`, a pointer to `imap_now["UNSEEN"]`. - -Also, `settings` can modify `mail_notification_preset` table, which will be the preset for the naughty notifications. Check [here](https://awesomewm.org/apidoc/libraries/naughty.html#notify) for the list of variables it can contain. Default definition: - -```lua -mail_notification _preset = { - icon = "lain/icons/mail.png", - position = "top_left" -} -``` - -Note that `mailcount` and `imap_now` elements are equals to 0 either if there are no new mails or credentials are invalid, so make sure that your settings are correct. - -With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen. - -You can have multiple instances of this widget at the same time. - -## Password security - -The reason why `is_plain` is false by default is to discourage the habit of storing passwords in plain. - -In general, when `is_plain == false`, `password` can be either a string, a table or a function: the widget will execute it asynchronously in the first two cases. - -### Using plain passwords - -You can set your password in plain like this: - -```lua -myimapcheck = lain.widget.imap { - is_plain = true, - password = "mymailpassword", - -- [...] -} -``` - -and you will have the same security provided by `~/.netrc`. - -### Using a password manager - -I recommend to use [spm](https://notabug.org/kl3/spm) or [pass](https://www.passwordstore.org). In this case, `password` has to be a function. Example stub: - -```lua -myimapcheck = lain.widget.imap { - password = function() - -- do your retrieval - return retrieved_password, try_again - end, - -- [...] -} -``` - -Where `retrieved_password` is the password retrieved from the manager, and `try_again` supports [DBus Secret Service](https://specifications.freedesktop.org/secret-service). - -The process flow is that the first `password()` call spawns the unlock prompt, then the second call retrieves the password. [Here](https://gist.github.com/lcpz/1854fc4320f4701957cd5309c8eed4a6) is an example of `password` function. - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`update` | Update `widget` | function -`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html) -`pwdtimer` | Password retrieval timer (available only if `password` is a function)| [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html) - -The `update` function can be used to refresh the widget before `timeout` expires. - -You can use `timer` to start/stop the widget as you like. diff --git a/awesome/.config/awesome/lain/wiki/mem.md b/awesome/.config/awesome/lain/wiki/mem.md deleted file mode 100755 index 205d535..0000000 --- a/awesome/.config/awesome/lain/wiki/mem.md +++ /dev/null @@ -1,33 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows memory status in MiB, [like `top` and `free -h`](https://github.com/lcpz/lain/issues/271). - -```lua -local mymem = lain.widget.mem() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 2 -`settings` | User settings | function | empty function - -in `settings` you can use the following variables: - -Variable | Meaning | Type ---- | --- | --- -`mem_now.used` | Memory used (MiB) | string -`mem_now.swapused` | Swap memory used (MiB) | string -`mem_now.perc` | Memory percentage | int - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`update` | Update `widget` | function \ No newline at end of file diff --git a/awesome/.config/awesome/lain/wiki/moc.md b/awesome/.config/awesome/lain/wiki/moc.md deleted file mode 100755 index 130bccb..0000000 --- a/awesome/.config/awesome/lain/wiki/moc.md +++ /dev/null @@ -1,122 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -A widget for showing the current song track's information from MOC (Music On Console). - -```lua -local mymoc = lain.widget.contrib.moc() -``` - -Now playing songs are notified like this: - - +--------------------------------------------------------+ - | +-------+ | - | |/^\_/^\| Now playing | - | |\ O O /| Cannibal Corpse (Hammer Smashed Face) - 1993 | - | | '.o.' | Hammer Smashed Face (Radio Disney Version) | - | +-------+ | - +--------------------------------------------------------+ - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 1 -`music_dir` | Music directory | string | "~/Music" -`cover_size` | Album art notification size (both height and width) | integer | 100 -`cover_pattern` | Pattern for the album art file | string | `*\\.(jpg|jpeg|png|gif)`* -`default_art` | Default art | string | "" -`followtag` | Display the notification on currently focused screen | boolean | false -`settings` | User settings | function | empty function - -\* In Lua, "\\\\" means "\" escaped. - -Default `cover_pattern` definition will made the widget set the first jpg, jpeg, png or gif file found in the directory as the album art. - -Pay attention to case sensitivity when defining `music_dir`. - -`settings` can use `moc_now` table, which contains the following string values: - -- state (possible values: "PLAY", "PAUSE", "STOP") -- file -- artist -- title -- album -- elapsed (Time elapsed for the current track) -- total (The current track's total time) - -and can modify `moc_notification_preset` table, which will be the preset for the naughty notifications. Check [here](https://awesomewm.org/apidoc/libraries/naughty.html#notify) for the list of variables it can contain. Default definition: - -```lua -moc_notification_preset = { - title = "Now playing", - timeout = 6, - text = string.format("%s (%s) - %s\n%s", moc_now.artist, - moc_now.album, moc_now.elapsed, moc_now.title) -} -``` - -With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen. - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`update` | Update `widget` | function -`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html) - -The `update` function can be used to refresh the widget before `timeout` expires. - -You can use `timer` to start/stop the widget as you like. - -## Keybindings - -You can control the widget with key bindings like these: - -```lua --- MOC control -awful.key({ altkey, "Control" }, "Up", - function () - os.execute("mocp -G") -- toggle - moc.update() - end), -awful.key({ altkey, "Control" }, "Down", - function () - os.execute("mocp -s") -- stop - moc.update() - end), -awful.key({ altkey, "Control" }, "Left", - function () - os.execute("mocp -r") -- previous - moc.update() - end), -awful.key({ altkey, "Control" }, "Right", - function () - os.execute("mocp -f") -- next - moc.update() - end), -``` - -where `altkey = "Mod1"`. - -If you don't use the widget for long periods and wish to spare CPU, you can toggle it with a keybinding like this: - -```lua --- toggle MOC widget -awful.key({ altkey }, "0", - function () - local common = { text = "MOC widget ", position = "top_middle", timeout = 2 } - if moc.timer.started then - moc.timer:stop() - common.text = common.text .. markup.bold("OFF") - else - moc.timer:start() - common.text = common.text .. markup.bold("ON") - end - naughty.notify(common) - end), -``` diff --git a/awesome/.config/awesome/lain/wiki/mpd.md b/awesome/.config/awesome/lain/wiki/mpd.md deleted file mode 100755 index cd114a5..0000000 --- a/awesome/.config/awesome/lain/wiki/mpd.md +++ /dev/null @@ -1,180 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows MPD status. - -```lua -local mympd = lain.widget.mpd() -``` - -Now playing songs are notified like this: - - +--------------------------------------------------------+ - | +-------+ | - | |/^\_/^\| Now playing | - | |\ O O /| Cannibal Corpse (Hammer Smashed Face) - 1993 | - | | '.o.' | Hammer Smashed Face (Radio Disney Version) | - | +-------+ | - +--------------------------------------------------------+ - -**Note:** if MPD is turned off or not set correctly, the widget will constantly display "N/A" values. - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 2 -`password` | MPD password | string | "" -`host` | MPD server | string | "127.0.0.1" -`port` | MPD port | string | "6600" -`music_dir` | Music directory | string | "~/Music" -`cover_size` | Album art notification size (both height and width) | integer | 100 -`cover_pattern` | Pattern for the album art file | string | `*.(jpg\|jpeg\|png\|gif)$` -`default_art` | Default art | string | `nil` -`notify` | Show notification popups | string | "on" -`followtag` | Notification behaviour | boolean | false -`settings` | User settings | function | empty function - -\* In Lua, "\\\\" means "\" escaped. - -Default `cover_pattern` definition will made the widget set the first jpg, jpeg, png or gif file found in the directory as the album art. - -Pay attention to case sensitivity when defining `music_dir`. - -`settings` can use `mpd_now` table, which contains the following values: - -(**note:** the first four are boolean [flags](https://github.com/lcpz/lain/pull/205), the remaining are all strings) - -- random_mode -- single_mode -- repeat_mode -- consume_mode -- pls_pos (playlist position) -- pls_len (playlist length) -- state (possible values: "play", "pause", "stop") -- file -- artist -- title -- name -- album -- track -- genre -- date -- [time](https://github.com/lcpz/lain/pull/90) (length of current song, in seconds) -- [elapsed](https://github.com/lcpz/lain/pull/90) (elapsed time of current song, in seconds) - -and can modify `mpd_notification_preset` table, which will be the preset for the naughty notifications. Check [here](https://awesomewm.org/doc/api/libraries/naughty.html#notify) for the list of variables it can contain. Default definition: - -```lua -mpd_notification_preset = { - title = "Now playing", - timeout = 6, - text = string.format("%s (%s) - %s\n%s", mpd_now.artist, - mpd_now.album, mpd_now.date, mpd_now.title) -} -``` - -With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen. - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The textbox | `wibox.widget.textbox` -`update` | Update `widget` | function -`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html) - -The `update` function can be used to refresh the widget before `timeout` expires. - -You can use `timer` to start/stop the widget as you like. - -## Keybindings - -You can control the widget with keybindings like these: - -```lua --- MPD control -awful.key({ altkey, "Control" }, "Up", - function () - awful.spawn.with_shell("mpc toggle || ncmpc toggle || pms toggle") - mympd.update() - end), -awful.key({ altkey, "Control" }, "Down", - function () - awful.spawn.with_shell("mpc stop || ncmpc stop || pms stop") - mympd.update() - end), -awful.key({ altkey, "Control" }, "Left", - function () - awful.spawn.with_shell("mpc prev || ncmpc prev || pms prev") - mympd.update() - end), -awful.key({ altkey, "Control" }, "Right", - function () - awful.spawn.with_shell("mpc next || ncmpc next || pms next") - mympd.update() - end), -``` - -where `altkey = "Mod1"`. - -If you don't use the widget for long periods and wish to spare CPU, you can toggle it with a keybinding like this: - -```lua --- disable MPD widget -awful.key({ altkey }, "0", - function () - local common = { - text = "MPD widget ", - position = "top_middle", - timeout = 2 - } - if mympd.timer.started then - mympd.timer:stop() - common.text = common.text .. markup.bold("OFF") - else - mympd.timer:start() - common.text = common.text .. markup.bold("ON") - end - naughty.notify(common) - end), -``` - -## Notes - -### Cover not showing in notifications - -If the cover file is existent but not showed in notifications, [try](https://github.com/lcpz/lain/issues/393) setting `music_dir` to a symlink of your music folder, rather than to a physical path. This can be easily done through -```shell -ln -s /the/real_path_to_your_music/ /home/username/Music -``` -However, this only applies if the music is stored outside your user-specific folder, for instance in an external partition. - -### Always use `set_markup` - -In `settings`, if you use `widget:set_text`, [it will ignore Pango markup](https://github.com/lcpz/lain/issues/258), so be sure to always use `widget:set_markup`. - -### Volume fade in toggling MPD - -If you want a fade in/out in toggling MPD, you can put [this script](https://gist.github.com/lcpz/76e315bc27c6cdf7edd5021964b88df1) in your local `bin` directory: - -```shell -$ curl https://gist.githubusercontent.com/lcpz/76e315bc27c6cdf7edd5021964b88df1/raw/97f7ba586418a4e07637cfbc91d2974278dfa623/mpd-fade -o ~/bin/mpc-fade -$ chmod +x ~/bin/mpc-fade -``` - -Set your 1% decrease/increase commands [here](https://gist.github.com/lcpz/76e315bc27c6cdf7edd5021964b88df1#file-mpd-fade-L8-L9), then use a keybinding like this: - -```lua --- MPD toggle with volume fading -awful.key({ "Shift" }, "Pause", - function() - awful.spawn.easy_async("mpc-fade 20 4", -- mpc-fade - function(stdout, stderr, reason, exit_code) - mympd.update() - end) - end), -``` diff --git a/awesome/.config/awesome/lain/wiki/net.md b/awesome/.config/awesome/lain/wiki/net.md deleted file mode 100755 index 252399e..0000000 --- a/awesome/.config/awesome/lain/wiki/net.md +++ /dev/null @@ -1,115 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Monitors network interfaces and shows current traffic. - -```lua -local mynet = lain.widget.net() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 2 -`iface` | Network device(s) | string (single interface) or table of strings (multiple interfaces) | autodetected -`units` | Units | integer | 1024 (kilobytes) -`notify` | Display "no carrier" notifications | string | "on" -`wifi_state` | Get wifi connection status | string | "off" -`eth_state` | Get ethernet connection status | string | "off" -`screen` | Notifications screen | integer | 1 -`settings` | User settings | function | empty function - -`iface` can be a string or an table of the form `{ "eth0", "eth1", ... }` containing a list of the devices to collect data on. - -If more than one device is included, `net_now.sent` and `net_now.received` will contain cumulative values over all given devices. -Use `net_now.devices["eth0"]` to access `sent`, `received`, `state` or `carrier` per device. - -Possible alternative values for `units` are 1 (byte) or multiple of 1024: 1024^2 (mb), 1024^3 (gb), and so on. - -If `notify = "off"` is set, the widget won't display a notification when there's no carrier. - -`settings` can use the following `iface` related strings: - -- `net_now.carrier` ("0", "1"); -- `net_now.state` ("up", "down"); -- `net_now.sent` and `net_now.received` (numbers) will be the sum across all specified interfaces; -- `net_now.devices["interface"]` contains the same attributes as the old api for each interface. More on this in the "Multiple devices" section below. - -If `wifi_state = "on"` is set, `settings` can use the following extra strings attached to `net_now.devices["wireless interface"]`: -- `wifi` (true, false) indicates if the interface is connected to a network; -- `signal` (number) is the connection signal strength in dBm; - -If `eth_state = "on"` is set, `settings` can use the following extra string: `net_now.devices["ethernet interface"].ethernet`, which is a boolean indicating if an ethernet connection's active. - -For compatibility reasons, if multiple devices are given, `net_now.carrier` and `net_now.state` correspond to the last interface in the iface table and should not be relied upon (deprecated). - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`update` | Update `widget` | function - -## Notes - -### Setting `iface` manually - -If the widget [spawns a "no carrier" notification and you are sure to have an active network device](https://github.com/lcpz/lain/issues/102), then autodetection is probably not working. This may due to [your user privileges](https://github.com/lcpz/lain/issues/102#issuecomment-246470526). In this case you can set `iface` manually. You can see which device is **UP,LOWER_UP** with the following command: - -```shell -ip link show -``` -## Usage examples -### Two widgets for upload/download rates from the same `iface` - -```lua -local mynetdown = wibox.widget.textbox() -local mynetup = lain.widget.net { - settings = function() - widget:set_markup(net_now.sent) - netdowninfo:set_markup(net_now.received) - end -} -``` -### Wifi connection + signal strength indicator and ethernet connection indicator -```lua -local wifi_icon = wibox.widget.imagebox() -local eth_icon = wibox.widget.imagebox() -local net = lain.widget.net { - notify = "off", - wifi_state = "on", - eth_state = "on", - settings = function() - local eth0 = net_now.devices.eth0 - if eth0 then - if eth0.ethernet then - eth_icon:set_image(ethernet_icon_filename) - else - eth_icon:set_image() - end - end - - local wlan0 = net_now.devices.wlan0 - if wlan0 then - if wlan0.wifi then - local signal = wlan0.signal - if signal < -83 then - wifi_icon:set_image(wifi_weak_filename) - elseif signal < -70 then - wifi_icon:set_image(wifi_mid_filename) - elseif signal < -53 then - wifi_icon:set_image(wifi_good_filename) - elseif signal >= -53 then - wifi_icon:set_image(wifi_great_filename) - end - else - wifi_icon:set_image() - end - end - end -} -``` diff --git a/awesome/.config/awesome/lain/wiki/pulse.md b/awesome/.config/awesome/lain/wiki/pulse.md deleted file mode 100755 index cea432a..0000000 --- a/awesome/.config/awesome/lain/wiki/pulse.md +++ /dev/null @@ -1,135 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows and controls PulseAudio volume. - -```lua -local volume = lain.widget.pulse() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 5 -`devicetype` | PulseAudio device type | string ("sink", "source") | "sink" -`cmd` | PulseAudio command | string or function | see [here](https://github.com/lcpz/lain/blob/master/widget/pulse.lua#L26) -`settings` | User settings | function | empty function - -`cmd` is a terminal command to catch infos from current default device. You can redefine it, being sure that the ouput is something like this: - -```shell -* index: 0 - volume: front-left: 18340 / 28% / -33.18 dB, front-right: 18340 / 28% / -33.18 dB - muted: no - device.string = "front:1" -``` - -If your devices change dynamically, you can define it as a function which returns a command string. - -If sed doesn't work, you can try with a grep variant: - -```lua -cmd = "pacmd list-" .. pulse.devicetype .. "s | grep -e $(pactl info | grep -e 'ink' | cut -d' ' -f3) -e 'volume: front' -e 'muted'" -``` - -### `settings` variables - -`settings` can use the following variables: - -Variable | Meaning | Type | Values ---- | --- | --- | --- -`volume_now.device` | Device name | string | device name or "N/A" -`volume_now.index` | Device index | string | >= "0" -`volume_now.muted` | Device mute status | string | "yes", "no", "N/A" -`volume_now.channel` | Device channels | table of string integers | `volume_now.channel[i]`, where `i >= 1` -`volume_now.left` | Front left sink level or first source | string | "0"-"100" -`volume_now.right` | Front right sink level or second source | string | "0"-"100" - -`volume_now.channel` is a table of your PulseAudio devices. Fetch a channel level like this: `volume_now.channel[i]`, where `i >= 1`. - -`volume_now.{left,right}` are pointers for `volume_now.{channel[1], channel[2]}` (stereo). - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`update` | Update `widget` | function - -## Buttons - -```lua -volume.widget:buttons(awful.util.table.join( - awful.button({}, 1, function() -- left click - awful.spawn("pavucontrol") - end), - awful.button({}, 2, function() -- middle click - os.execute(string.format("pactl set-sink-volume %s 100%%", volume.device)) - volume.update() - end), - awful.button({}, 3, function() -- right click - os.execute(string.format("pactl set-sink-mute %s toggle", volume.device)) - volume.update() - end), - awful.button({}, 4, function() -- scroll up - os.execute(string.format("pactl set-sink-volume %s +1%%", volume.device)) - volume.update() - end), - awful.button({}, 5, function() -- scroll down - os.execute(string.format("pactl set-sink-volume %s -1%%", volume.device)) - volume.update() - end) -)) -``` - -## Keybindings - -```lua --- PulseAudio volume control -awful.key({ altkey }, "Up", - function () - os.execute(string.format("pactl set-sink-volume %s +1%%", volume.device)) - volume.update() - end), -awful.key({ altkey }, "Down", - function () - os.execute(string.format("pactl set-sink-volume %s -1%%", volume.device)) - volume.update() - end), -awful.key({ altkey }, "m", - function () - os.execute(string.format("pactl set-sink-mute %s toggle", volume.device)) - volume.update() - end), -awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("pactl set-sink-volume %s 100%%", volume.device)) - volume.update() - end), -awful.key({ altkey, "Control" }, "0", - function () - os.execute(string.format("pactl set-sink-volume %s 0%%", volume.device)) - volume.update() - end), -``` - -where `altkey = "Mod1"`. - -## Example - -```lua --- PulseAudio volume (based on multicolor theme) -local volume = lain.widget.pulse { - settings = function() - vlevel = volume_now.left .. "-" .. volume_now.right .. "% | " .. volume_now.device - if volume_now.muted == "yes" then - vlevel = vlevel .. " M" - end - widget:set_markup(lain.util.markup("#7493d2", vlevel)) - end -} -``` diff --git a/awesome/.config/awesome/lain/wiki/pulsebar.md b/awesome/.config/awesome/lain/wiki/pulsebar.md deleted file mode 100755 index de3a475..0000000 --- a/awesome/.config/awesome/lain/wiki/pulsebar.md +++ /dev/null @@ -1,98 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows PulseAudio volume with a progressbar; provides tooltips and notifications. - -```lua -local volume = lain.widget.pulsebar() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 5 -`settings` | User settings | function | empty function -`width` | Bar width | number | 63 -`height` | Bar height | number | 1 -`margins` | Bar margins | number | 1 -`paddings` | Bar paddings | number | 1 -`ticks` | Set bar ticks on | boolean | false -`ticks_size` | Ticks size | number | 7 -`tick` | String for a notification tick | string | "|" -`tick_pre` | String for the left notification delimeter | string | "[" -`tick_post` | String for the right notification delimeter | string | "]" -`tick_none` | String for an empty notification tick | string | " " -`scallback` | [PulseAudio sink callback](https://github.com/lcpz/lain/wiki/pulseaudio/) | function | `nil` -`sink` | Mixer sink | number | 0 -`colors` | Bar colors | table | see [Default colors](https://github.com/lcpz/lain/wiki/pulsebar#default-colors) -`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/pulsebar#default-notification_preset) -`followtag` | Display the notification on currently focused screen | boolean | false -`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/pulsebar#default-notification_preset) -`devicetype` | PulseAudio device type | string ("sink", "source") | "sink" -`cmd` | PulseAudio command | string or function | see [here](https://github.com/lcpz/lain/blob/master/widget/pulsebar.lua#L48) - -Read [pulse](https://github.com/lcpz/lain/wiki/pulse) page for `cmd` settings. - -`settings` can use [these variables](https://github.com/lcpz/lain/wiki/pulse#settings-variables). - -With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen. - -### Default colors - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`background` | Bar backgrund color | string | "#000000" -`mute` | Bar mute color | string | "#EB8F8F" -`unmute` | Bar unmute color | string | "#A4CE8A" - -### Default `notification_preset` - -```lua -notification_preset = { - font = "Monospace 10" -} -``` - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`bar` | The widget | `wibox.widget.progressbar` -`device` | PulseAudio device | string -`notify` | The notification | function -`update` | Update state | function -`tooltip` | The tooltip | `awful.tooltip` - -## Buttons - -```lua -volume.bar:buttons(awful.util.table.join( - awful.button({}, 1, function() -- left click - awful.spawn("pavucontrol") - end), - awful.button({}, 2, function() -- middle click - os.execute(string.format("pactl set-sink-volume %d 100%%", volume.device)) - volume.update() - end), - awful.button({}, 3, function() -- right click - os.execute(string.format("pactl set-sink-mute %d toggle", volume.device)) - volume.update() - end), - awful.button({}, 4, function() -- scroll up - os.execute(string.format("pactl set-sink-volume %d +1%%", volume.device)) - volume.update() - end), - awful.button({}, 5, function() -- scroll down - os.execute(string.format("pactl set-sink-volume %d -1%%", volume.device)) - volume.update() - end) -)) -``` - -## Keybindings - -Same as [here](https://github.com/lcpz/lain/wiki/pulse#keybindings). If you want notifications, use `volume.notify()` instead of `volume.update()`. diff --git a/awesome/.config/awesome/lain/wiki/redshift.md b/awesome/.config/awesome/lain/wiki/redshift.md deleted file mode 100755 index b83ad3a..0000000 --- a/awesome/.config/awesome/lain/wiki/redshift.md +++ /dev/null @@ -1,100 +0,0 @@ -### What is Redshift? # - -[**Project homepage**](http://jonls.dk/redshift/) - ->**Redshift** is an application that adjusts the computer display's color temperature based upon the Sun's apparent position in relation to the user's location on Earth. -> ->The program is free software, inspired by the proprietary f.lux, and can be used to reduce eye strain as well as insomnia and delayed sleep phase syndrome. -> ->The computer display's color temperature transitions evenly from night to daytime temperature to allow the user's eyes to slowly adapt. At night, the color temperature is low and is typically 3000–4000 K (default is 3500 K), preferably matching the room's lighting temperature. Typical color temperature during the daytime is 5500–6500 K (default is 5500 K). - -**Source:** [Wikipedia](https://en.wikipedia.org/wiki/Redshift_%28software%29) - -### Preparations - -**Redshift must be installed** on your system if you want to use this widget. - -Packages should be available for most distributions. Source code and build instructions can be found on Github [here](https://github.com/jonls/redshift). - -You also need a valid config file. Please see the [project homepage](http://jonls.dk/redshift/) for details. An example: [`~/.config/redshift.conf`](https://github.com/jonls/redshift/blob/master/redshift.conf.sample). - -You have to match the location settings to your personal situation: you can adjust the `lat` and `lon` variables using a [web service](https://encrypted.google.com/search?q=get+latitude+and+longitude). - -You might also want to modify the color temperatures to fit your preferences. - -### Using the widget - -This widget provides the following functions: - -| function | meaning | -| --- | --- | -| `redshift:toggle()` | Toggles Redshift adjustments on or off, and also restarts it if terminates. | -| `redshift:attach(widget, update_function)` | Attach to a widget. Click on the widget to toggle redshift on or off. `update_function` is a callback function which will be triggered each time Redshift changes its status. (See the examples below.) | - -### Usage examples - -#### Textbox status widget - -```lua -myredshift = wibox.widget.textbox() -lain.widget.contrib.redshift:attach( - myredshift, - function (active) - if active then - myredshift:set_text("RS on") - else - myredshift:set_text("RS off") - end - end -) -``` - -Then add `myredshift.widget` to your wibox. - -#### Checkbox status widget - -```lua -local markup = lain.util.markup - -local myredshift = wibox.widget{ - checked = false, - check_color = "#EB8F8F", - border_color = "#EB8F8F", - border_width = 1, - shape = gears.shape.square, - widget = wibox.widget.checkbox -} - -local myredshift_text = wibox.widget{ - align = "center", - widget = wibox.widget.textbox, -} - -local myredshift_stack = wibox.widget{ - myredshift, - myredshift_text, - layout = wibox.layout.stack -} - -lain.widget.contrib.redshift:attach( - myredshift, - function (active) - if active then - myredshift_text:set_markup(markup(beautiful.bg_normal, "R")) - else - myredshift_text:set_markup(markup(beautiful.fg_normal, "R")) - end - myredshift.checked = active - end -) -``` - -Then add the `myredshift_stack` widget to your wibox. - -#### Keybinding - -Add this to the keybindings in your `rc.lua`: -```lua --- Toggle redshift with Mod+Shift+t -awful.key({ modkey, "Shift" }, "t", function () lain.widget.contrib.redshift:toggle() end), -``` \ No newline at end of file diff --git a/awesome/.config/awesome/lain/wiki/sysload.md b/awesome/.config/awesome/lain/wiki/sysload.md deleted file mode 100755 index 6fb1c04..0000000 --- a/awesome/.config/awesome/lain/wiki/sysload.md +++ /dev/null @@ -1,27 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows the current system load. - -```lua -mysysload = lain.widget.sysload() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 2 -`settings` | User settings | function | empty function - -`settings` can use strings `load_1`, `load_5` and `load_15`, which are the load averages over 1, 5, and 15 minutes. - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`update` | Update `widget` | function \ No newline at end of file diff --git a/awesome/.config/awesome/lain/wiki/task.md b/awesome/.config/awesome/lain/wiki/task.md deleted file mode 100755 index af53a6a..0000000 --- a/awesome/.config/awesome/lain/wiki/task.md +++ /dev/null @@ -1,51 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Attaches a [taskwarrior](http://taskwarrior.org) notifications to a widget, and lets you execute `task` commands from the promptbox. - -```lua -lain.widget.contrib.task.attach(widget, args) -``` - -`args` is an optional table which can contain: - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`show_cmd` | Taskwarrior command to show in the popup | string | "task next" -`prompt_text` | Prompt text | string | "Enter task command: " -`followtag` | Display the notification on currently focused screen | boolean | false -`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/task#default-notification_preset) - -The tasks are shown in a notification popup when the mouse is moved over the attached `widget`, and the popup is hidden when the mouse is moved away. By default, the notification will show the output of `task next`. With `show_cmd`, the `task` popup command can be customized, for example if you want to [filter the tasks](https://taskwarrior.org/docs/filter.html) or show a [custom report](https://github.com/lcpz/lain/pull/213). - -With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen. - -You can call the notification with a keybinding like this: - -```lua -awful.key({ modkey, altkey }, "t", function () lain.widget.contrib.task.show(scr) end), -``` - -where ``altkey = "Mod1"`` and `scr` (optional) indicates the screen which you want the notification in. - -And you can prompt to input a `task` command with a keybinding like this: - -```lua -awful.key({ altkey }, "t", lain.widget.contrib.task.prompt), -``` - -### Default `notification_preset` - -```lua -notification_preset = { - font = "Monospace 10", - icon = helpers.icons_dir .. "/taskwarrior.png" -} -``` - -## Note - -* If your widget does not display `task next` output, try changing Taskwarrior verbose, for instance: `show_cmd = 'task rc.verbose:label'` or `show_cmd = 'task rc.verbose:nothing'`. \ No newline at end of file diff --git a/awesome/.config/awesome/lain/wiki/temp.md b/awesome/.config/awesome/lain/wiki/temp.md deleted file mode 100755 index 4ec5828..0000000 --- a/awesome/.config/awesome/lain/wiki/temp.md +++ /dev/null @@ -1,35 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Shows the current CPU temperature. - -```lua -local mytemp = lain.widget.temp() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout (in seconds) | integer | 30 -`tempfile` | Path of file which stores core temperature value | string | "/sys/devices/virtual/thermal/thermal_zone0/temp" -`settings` | User settings | function | empty function - -`settings` can use the string `coretemp_now`, which contains the info retrieved from `tempfile`, and the table `temp_now`, which contains an entry for each `*temp*` file in each directory in the following paths: - -```shell -/sys/class/devices/virtual/thermal/thermal_zone* -/sys/class/devices/platform/coretemp*/hwmon/hwon* -``` - -All values are expressed in Celsius (GNU/Linux standard). - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`update` | Update `widget` | function diff --git a/awesome/.config/awesome/lain/wiki/tp_smapi.md b/awesome/.config/awesome/lain/wiki/tp_smapi.md deleted file mode 100755 index edb108f..0000000 --- a/awesome/.config/awesome/lain/wiki/tp_smapi.md +++ /dev/null @@ -1,103 +0,0 @@ -# Description - -[`tp_smapi`](http://www.thinkwiki.org/wiki/Tp_smapi) interface and widget creator. - -```lua -local tp_smapi = lain.widget.contrib.tp_smapi(apipath) -``` - -The argument `apipath` is an optional string which defines the API path. Its default value is `"/sys/devices/platform/smapi"`. - -# Functions - -## tp_smapi.get(batid, feature) - -Gets the `feature` of battery `batid`. Returns a string. The list of available features is available at [this page](https://www.thinkwiki.org/wiki/Tp_smapi#Battery_status_features). - -## tp_smapi.installed(batid) - -Checks if battery `batid` is installed. Returns a boolean. - -## tp_smapi.status(batid) - -Gets the status of battery `batid`. Returns a string ("charging", "discharging", or "full"). - -## tp_smapi.percentage(batid) - -Gets the percentage of battery `batid`. Returns a numeric string. - -## tp_smapi.time(batid) - -Gets the time of battery `batid`. Depending on the current status, it can be either running or charging time. Returns a string of the format `HH:MM`. - -## tp_smapi.hide() - -Removes any notification spawned by `tp_smapi.show`. - -## tp_smapi.show(batid, seconds, scr) - -Notifies the current information of battery `batid` for `seconds` seconds on screen `scr`. -The argument `scr` is optional, and if missing, the notification will be displayed on the currently focused screen. - -## tp_smapi.create_widget(args) - -Creates a [lain widget](https://github.com/lcpz/lain/wiki/Widgets#usage) of the available ThinkPad batteries. - -```lua -local tpbat = tp_smapi.create_widget() -``` - -### Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`widget` | The widget type to use | [`wibox.widget`](https://awesomewm.org/doc/api/classes/wibox.widget.html) | [`wibox.widget.textbox`](https://awesomewm.org/doc/api/classes/wibox.widget.textbox.html) -`timeout` | Refresh timeout (in seconds) | integer | 30 -`pspath` | Power supply directory path | string | "/sys/class/power_supply/" -`battery` | Single battery id | string | autodetected -`batteries` | Multiple batteries id table | table of strings | autodetected -`settings` | User settings | function | empty function - -The widget will try to autodetect `battery` and `batteries`. If something -goes wrong, you will have to define them manually. In that case, you only have -to define one between `battery` and `batteries`. If you have one battery, you -can either use `args.battery = "BAT*"` or `args.batteries = {"BAT*"}`, where `BAT*` -is the identifier of your battery in `pspath` (do not use it as a wildcard). -Of course, if you have multiple batteries, you need to use the latter option. - -If you define `pspath`, **be sure** to not forget the final slash (/). - -`settings` can use the `tpbat_now` table, which contains the following strings: - -- `status`, general status ("N/A", "discharging", "charging", "full"); -- `n_status[i]`, i-th battery status (like above); -- `n_perc[i]`, i-th battery charge percentage (like above); -- `n_time[i]`, i-th battery running or charging time (HH:MM string or "N/A"); - -`n_time[i]` is the running time of battery `i` when it is discharging, and the charging time otherwise. - -### Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | [`wibox.widget`](https://awesomewm.org/doc/api/classes/wibox.widget.html) | [textbox](https://awesomewm.org/doc/api/classes/wibox.widget.textbox.html) -`batteries` | Battery identifiers | Table of strings -`update` | Update `widget` | function -`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html) - -The `update` function can be used to refresh the widget before `timeout` expires. - -### Usage example - -```lua -local tp_smapi = lain.widget.contrib.tp_smapi() -local bat = tp_smapi.create_widget { - battery = "BAT0", - settings = function() - widget:set_markup(tpbat_now.n_perc[1] .. "%") - end -} - -bat.widget:connect_signal("mouse::enter", function () tp_smapi.show("BAT0") end) -bat.widget:connect_signal("mouse::leave", function () tp_smapi.hide() end) -``` diff --git a/awesome/.config/awesome/lain/wiki/watch.md b/awesome/.config/awesome/lain/wiki/watch.md deleted file mode 100755 index ff18a5c..0000000 --- a/awesome/.config/awesome/lain/wiki/watch.md +++ /dev/null @@ -1,222 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Template for asynchronous watcher widgets. - -Executes an input command and makes the user feed a `wibox.widget` with the output. - -```lua -local mywatch = lain.widget.watch() -``` - -This has been implemented in Awesome 4.0 as [`awful.widget.watch`](https://awesomewm.org/doc/api/classes/awful.widget.watch.html). But while Awesome `watch` returns only the widget, Lain one returns a table including its timer and internal update function too. - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`widget` | Widget to feed | `wibox.widget` | `wibox.widget.textbox` -`timeout` | Refresh timeout seconds | number | 5 -`cmd` | The command to execute | string **or** table | `nil` -`nostart` | Widget timer doesn't start immediately | boolean | false -`stoppable` | Widget timer is stoppable | boolean | false -`settings` | User settings | function | see [Default `settings` function](https://github.com/lcpz/lain/wiki/watch#default-settings-function) - -If your command needs a shell, you need to set `cmd` as an array of 3 strings, where the first contains the shell, the second contains `-c`, and the third contains the actual command. Example: - -```lua -cmd = { awful.util.shell, "-c", "myactualcommand" } -``` - -`settings` can use the string `output`, which is the output of `cmd`. - -### Default `settings` function - -```lua -settings = function() widget:set_text(output) end -``` -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | input widget type or `wibox.widget.textbox` -`update` | Update `widget` | function -`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html) or `nil` - -The `update` function can be used to refresh the widget before `timeout` expires. - -If `stoppable == true`, the widget will have an ad-hoc timer, which you can control though `timer` variable. - -## Use case examples - -### bitcoin - -```lua --- Bitcoin to USD current price, using Coinbase V1 API -local bitcoin = lain.widget.watch({ - timeout = 43200, -- half day - stoppable = true, - cmd = "curl -m5 -s 'https://coinbase.com/api/v1/prices/buy'", - settings = function() - local btc, pos, err = require("lain.util").dkjson.decode(output, 1, nil) - local btc_price = (not err and btc and btc["subtotal"]["amount"]) or "N/A" - - -- customize here - widget:set_text(btc_price) - end -}) -``` - -### btrfs - -```lua --- btrfs root df -local myrootfs = lain.widget.watch({ - timeout = 600, - cmd = "btrfs filesystem df -g /", - settings = function() - local total, used = string.match(output, "Data.-total=(%d+%.%d+)GiB.-used=(%d+%.%d+)GiB") - local percent_used = math.ceil((tonumber(used) / tonumber(total)) * 100) - - -- customize here - widget:set_text(" [/: " .. percent_used .. "%] ") - end -}) -``` - -### cmus - -```lua --- cmus audio player -local cmus = lain.widget.watch({ - timeout = 2, - stoppable = true, - cmd = "cmus-remote -Q", - settings = function() - local cmus_now = { - state = "N/A", - artist = "N/A", - title = "N/A", - album = "N/A" - } - - for w in string.gmatch(output, "(.-)tag") do - a, b = w:match("(%w+) (.-)\n") - cmus_now[a] = b - end - - -- customize here - widget:set_text(cmus_now.artist .. " - " .. cmus_now.title) - end -}) -``` - -### maildir - -```lua --- checks whether there are files in the "new" directories of a mail dirtree -local mailpath = "~/Mail" -local mymaildir = lain.widget.watch({ - timeout = 60, - stoppable = true, - cmd = { awful.util.shell, "-c", string.format("ls -1dr %s/*/new/*", mailpath) }, - settings = function() - local inbox_now = { digest = "" } - - for dir in output:gmatch(".-/(%w+)/new") do - inbox_now[dir] = 1 - for _ in output:gmatch(dir) do - inbox_now[dir] = inbox_now[dir] + 1 - end - if #inbox_now.digest > 0 then inbox_now.digest = inbox_now.digest .. ", " end - inbox_now.digest = inbox_now.digest .. string.format("%s (%d)", dir, inbox_now[dir]) - end - - -- customize here - widget:set_text("mail: " .. inbox_now.digest) - end -}) -``` - -### mpris - -```lua --- infos from mpris clients such as spotify and VLC --- based on https://github.com/acrisci/playerctl -local mpris = lain.widget.watch({ - cmd = "playerctl status && playerctl metadata", - timeout = 2, - stoppable = true, - settings = function() - local escape_f = require("awful.util").escape - local mpris_now = { - state = "N/A", - artist = "N/A", - title = "N/A", - art_url = "N/A", - album = "N/A", - album_artist = "N/A" - } - - mpris_now.state = string.match(output, "Playing") or - string.match(output, "Paused") or "N/A" - - for k, v in string.gmatch(output, "'[^:]+:([^']+)':[%s]<%[?'([^']+)'%]?>") - do - if k == "artUrl" then mpris_now.art_url = v - elseif k == "artist" then mpris_now.artist = escape_f(v) - elseif k == "title" then mpris_now.title = escape_f(v) - elseif k == "album" then mpris_now.album = escape_f(v) - elseif k == "albumArtist" then mpris_now.album_artist = escape_f(v) - end - end - - -- customize here - widget:set_text(mpris_now.artist .. " - " .. mpris_now.title) - end -}) -``` - -### upower - -```lua --- battery infos from freedesktop upower -local mybattery = lain.widget.watch({ - timeout = 30, - cmd = { awful.util.shell, "-c", "upower -i /org/freedesktop/UPower/devices/battery_BAT | sed -n '/present/,/icon-name/p'" }, - settings = function() - local bat_now = { - present = "N/A", - state = "N/A", - warninglevel = "N/A", - energy = "N/A", - energyfull = "N/A", - energyrate = "N/A", - voltage = "N/A", - percentage = "N/A", - capacity = "N/A", - icon = "N/A" - } - - for k, v in string.gmatch(output, '([%a]+[%a|-]+):%s*([%a|%d]+[,|%a|%d]-)') do - if k == "present" then bat_now.present = v - elseif k == "state" then bat_now.state = v - elseif k == "warning-level" then bat_now.warninglevel = v - elseif k == "energy" then bat_now.energy = string.gsub(v, ",", ".") -- Wh - elseif k == "energy-full" then bat_now.energyfull = string.gsub(v, ",", ".") -- Wh - elseif k == "energy-rate" then bat_now.energyrate = string.gsub(v, ",", ".") -- W - elseif k == "voltage" then bat_now.voltage = string.gsub(v, ",", ".") -- V - elseif k == "percentage" then bat_now.percentage = tonumber(v) -- % - elseif k == "capacity" then bat_now.capacity = string.gsub(v, ",", ".") -- % - elseif k == "icon-name" then bat_now.icon = v - end - end - - -- customize here - widget:set_text("Bat: " .. bat_now.percentage .. " " .. bat_now.state) - end -}) -``` diff --git a/awesome/.config/awesome/lain/wiki/weather.md b/awesome/.config/awesome/lain/wiki/weather.md deleted file mode 100755 index 1875965..0000000 --- a/awesome/.config/awesome/lain/wiki/weather.md +++ /dev/null @@ -1,150 +0,0 @@ -## Usage - -[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage) - -### Description - -Provides current weather status widgets and X-days forecast popup notifications. - -Powered by [OpenWeatherMap](http://openweathermap.org/api) API. - -By default, it uses [current](http://openweathermap.org/current) for current weather data and [forecast16](http://openweathermap.org/forecast16) for forecasts. - -```lua -local myweather = lain.widget.weather() -``` - -## Input table - -Variable | Meaning | Type | Default ---- | --- | --- | --- -`timeout` | Refresh timeout seconds for current weather status | number | 900 (15 min) -`timeout_forecast` | Refresh timeout seconds for forecast notification | number | 86400 (24 hrs) -`current_call` | Command to fetch weather status data from the API | string | see `default_current_call` -`forecast_call` | Command to fetch forecast data from the API | string | see `default_forecast_call` -`city_id` | API city code | number | not set -`utc_offset` | UTC time offset | function | see [here](https://github.com/lcpz/lain/blob/master/widget/weather.lua#L35-L39) -`units` | Temperature units system | string | "metric" -`lang` | API data localization | string | "en" -`cnt` | Forecast days interval | integer | 5 -`date_cmd` | Forecast notification format style | string | "date -u -d @%d +'%%a %%d'" -`icons_path` | Icons path | string | `lain/icons/openweathermap` -`notification_preset` | Preset for notifications | table | empty table -`notification_text_fun` | Function to format forecast notifications | function | see `notification_text_fun` below -`weather_na_markup` | Markup to be used when weather textbox is not available | text | " N/A " -`followtag` | Display the notification on currently focused screen | boolean | false -`showpopup` | Display popups with mouse hovering | string, possible values: "on", "off" | "on" -`settings` | User settings | function | empty function - -- ``default_current_call`` - - `"curl -s 'http://api.openweathermap.org/data/2.5/weather?id=%s&units=%s&lang=%s'"` - - You can rewrite it using any fetcher solution you like, or you can modify it in order to fetch data by city name, instead of ID: just replace `id` with `q`: - - `"curl -s 'http://api.openweathermap.org/data/2.5/weather?q=%s&units=%s&lang=%s'"` - - and set `city_id` with your city name, for instance `city_id = "London,UK"`. - -- ``default_forecast_call`` - - `"curl -s 'http://api.openweathermap.org/data/2.5/forecast/daily?id=%s&units=%s&lang=%s&cnt=%s'"` - - Like above. - If you want to use [forecast5](http://openweathermap.org/forecast5), use this API call string: - `http://api.openweathermap.org/data/2.5/forecast?id=%s&units=%s&lang=%s&cnt=%s` - -- ``city_id`` - - An integer that defines the OpenWeatherMap ID code of your city. - To obtain it go to [OpenWeatherMap](http://openweathermap.org/) and query for your city in the top search bar. The link will look like this: - - http://openweathermap.org/city/2643743 - - your `city_id` is the number at the end. - -- ``units`` - - - For temperature in Fahrenheit use `units = "imperial"` - - For temperature in Celsius use `units = "metric"` (Lain default) - - For temperature in Kelvin use `units = "standard"` (OpenWeatherMap default) - -- ``lang`` - - See *Multilingual Support* section [here](http://openweathermap.org/current). - -- ``cnt`` - - Determines how many days to show in the forecast notification. Up to 16 if you use [forecast16](http://openweathermap.org/forecast16) (default), and up to 5 if you use [forecast5](http://openweathermap.org/forecast5). - -- ``date_cmd`` - - OpenWeatherMap time is in UNIX format, so this variable uses `date` to determine how each line in the forecast notification is formatted. Default looks like this: - - day #daynumber: forecast, temp_min - temp_max - - see `man date` for your customizations. - -- ``icons_path`` - - You can set your own icons path if you don't wish to use `lain/icons/openweathermap`. Just be sure that your icons are PNGs and named exactly like [OpenWeatherMap ones](http://openweathermap.org/weather-conditions). - -- ``notification_preset`` - - Notifications preset table. See [here](https://awesomewm.org/doc/api/libraries/naughty.html#notify) for the details. - -- ``notification_text_fun`` - ```lua - function (wn) - local day = string.gsub(read_pipe(string.format(date_cmd, wn["dt"])), "\n", "") - local tmin = math.floor(wn["temp"]["min"]) - local tmax = math.floor(wn["temp"]["max"]) - local desc = wn["weather"][1]["description"] - - return string.format("%s: %s, %d - %d ", day, desc, tmin, tmax) - end - ``` - See [here](https://github.com/lcpz/lain/issues/186#issuecomment-203400918) for a complete customization example. - -- ``followtag`` - - With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen. - -- ``settings`` - - In your `settings` function, you can use `widget` variable to refer to the textbox, and the dictionary `weather_now` to refer to data retrieved by `current_call`. The dictionary is built with [dkjson library](http://dkolf.de/src/dkjson-lua.fsl/home), and its structure is defined [here](http://openweathermap.org/weather-data). - For instance, you can retrieve current weather status and temperature in this way: - ```lua - descr = weather_now["weather"][1]["description"]:lower() - units = math.floor(weather_now["main"]["temp"]) - ``` - -## Output table - -Variable | Meaning | Type ---- | --- | --- -`widget` | The widget | `wibox.widget.textbox` -`icon` | The icon | `wibox.widget.imagebox` -`update` | Update `widget` | function -`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html) -`timer_forecast` | The forecast notification timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html) - -## Functions - -You can attach the forecast notification to any widget like this: - -```lua -myweather.attach(obj) -``` - -Hovering over ``obj`` will display the notification. - -## Keybindings - -You can create a keybinding for the weather popup like this: - -```lua -awful.key( { "Mod1" }, "w", function () myweather.show(5) end ) -``` - -where ``show`` argument is an integer defining timeout seconds. diff --git a/awesome/.config/awesome/lock.sh b/awesome/.config/awesome/lock.sh deleted file mode 100755 index 32c3b49..0000000 --- a/awesome/.config/awesome/lock.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -set -e -xset s off dpms 0 10 0 -dm-tool lock -xset s off -dpms diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua deleted file mode 100755 index b497ed8..0000000 --- a/awesome/.config/awesome/rc.lua +++ /dev/null @@ -1,798 +0,0 @@ ---[[ - - Awesome WM configuration template - github.com/lcpz - ---]] - --- {{{ Required libraries -local awesome, client, mouse, screen, tag = awesome, client, mouse, screen, tag -local ipairs, string, os, table, tostring, tonumber, type = ipairs, string, os, table, tostring, tonumber, type - -local gears = require("gears") -local awful = require("awful") - require("awful.autofocus") -local wibox = require("wibox") -local beautiful = require("beautiful") -local naughty = require("naughty") -local lain = require("lain") ---local menubar = require("menubar") -local freedesktop = require("freedesktop") -local hotkeys_popup = require("awful.hotkeys_popup").widget - require("awful.hotkeys_popup.keys") -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility -local dpi = require("beautiful.xresources").apply_dpi --- }}} - --- {{{ Error handling --- Check if awesome encountered an error during startup and fell back to --- another config (This code will only ever execute for the fallback config) -if awesome.startup_errors then - naughty.notify({ preset = naughty.config.presets.critical, - title = "Oops, there were errors during startup!", - text = awesome.startup_errors }) -end - - --- Handle runtime errors after startup -do - local in_error = false - awesome.connect_signal("debug::error", function (err) - if in_error then return end - in_error = true - - naughty.notify({ preset = naughty.config.presets.critical, - title = "Oops, an error happened!", - text = tostring(err) }) - in_error = false - end) -end --- }}} - --- {{{ Autostart windowless processes - --- This function will run once every time Awesome is started -local function run_once(cmd_arr) - for _, cmd in ipairs(cmd_arr) do - awful.spawn.with_shell(string.format("pgrep -u $USER -fx '%s' > /dev/null || (%s)", cmd, cmd)) - end -end - - --- awful.spawn("libinput-gestures") ---run_once({ "urxvtd", "unclutter -root" }) -- entries must be separated by commas -awful.spawn("/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1") ---awful.spawn("xfce4-power-manager") ---awful.spawn("light-locker") -awful.spawn("xss-lock /home/mrfluffy/.config/script/lock.sh") -awful.spawn("picom --experimental-backend") -awful.spawn("nitrogen --restore") ---awful.spawn("/usr/bin/dunst") -awful.spawn("nextcloud") -awful.spawn("fcitx5 -d") -naughty.suspend() --- This function implements the XDG autostart specification ---[[ -awful.spawn.with_shell( - 'if (xrdb -query | grep -q "^awesome\\.started:\\s*true$"); then exit; fi;' .. - 'xrdb -merge <<< "awesome.started:true";' .. - -- list each of your autostart commands, followed by ; inside single quotes, followed by .. - 'dex --environment Awesome --autostart --search-paths "$XDG_CONFIG_DIRS/autostart:$XDG_CONFIG_HOME/autostart"' -- https://github.com/jceb/dex -) ---]] - --- }}} - --- {{{ Variable definitions - -local themes = { - "blackburn", -- 1 - "copland", -- 2 - "dremora", -- 3 - "holo", -- 4 - "multicolor", -- 5 - "powerarrow", -- 6 - "powerarrow-dark", -- 7 - "rainbow", -- 8 - "steamburn", -- 9 - "vertex", -- 10 -} - -local chosen_theme = themes[6] -local modkey = "Mod4" -local altkey = "Mod1" -local terminal = "alacritty" -local vi_focus = false -- vi-like client focus - https://github.com/lcpz/awesome-copycats/issues/275 -local cycle_prev = true -- cycle trough all previous client or just the first -- https://github.com/lcpz/awesome-copycats/issues/274 -local editor = os.getenv("EDITOR") or "nvim" -local gui_editor = os.getenv("GUI_EDITOR") or "eovim" -local browser = os.getenv("BROWSER") or "brave" -local scrlocker = "slock" - -awful.util.terminal = terminal -awful.util.tagnames = { "MAIN", "DEV", "WWW", "TERM", "TEXT","FOLDER","SCHOOL","GAMES","MUSIC"} -awful.layout.layouts = { - awful.layout.suit.spiral.dwindle, - awful.layout.suit.tile, - awful.layout.suit.floating, - --awful.layout.suit.tile, - --awful.layout.suit.tile.left, - --awful.layout.suit.tile.bottom, - --awful.layout.suit.tile.top, - --awful.layout.suit.fair, - --awful.layout.suit.fair.horizontal, - --awful.layout.suit.spiral, - --awful.layout.suit.spiral.dwindle, - --awful.layout.suit.max, - --awful.layout.suit.max.fullscreen, - --awful.layout.suit.magnifier, - --awful.layout.suit.corner.nw, - --awful.layout.suit.corner.ne, - --awful.layout.suit.corner.sw, - --awful.layout.suit.corner.se, - --lain.layout.cascade, - --lain.layout.cascade.tile, - --lain.layout.centerwork, - --lain.layout.centerwork.horizontal, - --lain.layout.termfair, - --lain.layout.termfair.center, -} - -awful.util.taglist_buttons = my_table.join( - awful.button({ }, 1, function(t) t:view_only() end), - awful.button({ modkey }, 1, function(t) - if client.focus then - client.focus:move_to_tag(t) - end - end), - awful.button({ }, 3, awful.tag.viewtoggle), - awful.button({ modkey }, 3, function(t) - if client.focus then - client.focus:toggle_tag(t) - end - end), - awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end), - awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end) -) - -awful.util.tasklist_buttons = my_table.join( - awful.button({ }, 1, function (c) - if c == client.focus then - c.minimized = true - else - --c:emit_signal("request::activate", "tasklist", {raise = true}) - - -- Without this, the following - -- :isvisible() makes no sense - c.minimized = false - if not c:isvisible() and c.first_tag then - c.first_tag:view_only() - end - -- This will also un-minimize - -- the client, if needed - client.focus = c - c:raise() - end - end), - awful.button({ }, 2, function (c) c:kill() end), - awful.button({ }, 3, function () - local instance = nil - - return function () - if instance and instance.wibox.visible then - instance:hide() - instance = nil - else - instance = awful.menu.clients({theme = {width = dpi(250)}}) - end - end - end), - awful.button({ }, 4, function () awful.client.focus.byidx(1) end), - awful.button({ }, 5, function () awful.client.focus.byidx(-1) end) -) - -lain.layout.termfair.nmaster = 3 -lain.layout.termfair.ncol = 1 -lain.layout.termfair.center.nmaster = 3 -lain.layout.termfair.center.ncol = 1 -lain.layout.cascade.tile.offset_x = dpi(2) -lain.layout.cascade.tile.offset_y = dpi(32) -lain.layout.cascade.tile.extra_padding = dpi(5) -lain.layout.cascade.tile.nmaster = 5 -lain.layout.cascade.tile.ncol = 2 - - - -beautiful.init(string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), chosen_theme)) --- }}} - --- {{{ Menu -local myawesomemenu = { - { "hotkeys", function() return false, hotkeys_popup.show_help end }, - { "manual", terminal .. " -e man awesome" }, - { "edit config", string.format("%s -e %s %s", terminal, editor, awesome.conffile) }, - { "restart", awesome.restart }, - { "quit", function() awesome.quit() end } -} -awful.util.mymainmenu = freedesktop.menu.build({ - icon_size = beautiful.menu_height or dpi(16), - before = { - { "Awesome", myawesomemenu, beautiful.awesome_icon }, - -- other triads can be put here - }, - after = { - { "Open terminal", terminal }, - -- other triads can be put here - } -}) --- hide menu when mouse leaves it ---awful.util.mymainmenu.wibox:connect_signal("mouse::leave", function() awful.util.mymainmenu:hide() end) - ---menubar.utils.terminal = terminal -- Set the Menubar terminal for applications that require it --- }}} - --- {{{ Screen - --Re-set wallpaper when a screen's geometry changes (e.g. different resolution) -screen.connect_signal("property::geometry", function(s) - -- Wallpaper - if beautiful.wallpaper then - local wallpaper = beautiful.wallpaper - -- If wallpaper is a function, call it with the screen - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - end - --awful.spawn("nitrogen --restore") -end) - --- No borders when rearranging only 1 non-floating or maximized client -screen.connect_signal("arrange", function (s) - local only_one = #s.tiled_clients == 1 - for _, c in pairs(s.clients) do - if only_one and not c.floating or c.maximized then - c.border_width = 0 - else - c.border_width = beautiful.border_width - end - end -end) --- Create a wibox for each screen and add it -awful.screen.connect_for_each_screen(function(s) beautiful.at_screen_connect(s) end) --- }}} - --- {{{ Mouse bindings -root.buttons(my_table.join( - awful.button({ }, 3, function () awful.util.mymainmenu:toggle() end), - awful.button({ }, 4, awful.tag.viewnext), - awful.button({ }, 5, awful.tag.viewprev) -)) --- }}} - --- {{{ Key bindings - globalkeys = my_table.join( - -- user added - awful.key({ altkey }, "m", function (c) awful.spawn("youtube-music") end, - {description = "Youtube Music", group = "hotkeys"}), - awful.key({ altkey }, "e", function (c) awful.spawn("mailspring") end, - {description = "mailspring", group = "hotkeys"}), - awful.key({altkey}, "d", function() os.execute("rofi -no-lazy-greb -show drun -theme /home/mrfluffy/.config/rofi-menus/themes/appsmenu.rasi") end, - {description = "open rofi", group = "hotkeys"}), - awful.key({modkey}, "Tab", function() os.execute("rofi -no-lazy-greb -show window -theme /home/mrfluffy/.config/rofi-menus/themes/appsmenu.rasi") end, - {description = "open rofi window", group = "hotkeys"}), - awful.key({altkey}, "p", function() awful.spawn("kcolorchooser") end, - {description = "open kde color picker", group = "hotkeys"}), - -- Take a screenshot - -- https://github.com/lcpz/dots/blob/master/bin/screenshot - awful.key({}, "Print", function() os.execute("flameshot gui") end, - {description = "take a screenshot", group = "hotkeys"}), - awful.key({altkey},"f", function() awful.spawn("pcmanfm")end, - {description = "open pcmanfm", group = "hotkeys"}), - -- X screen locker - --awful.key({ altkey, "Control" }, "l", function () os.execute(scrlocker) end, - -- {description = "lock screen", group = "hotkeys"}), - - -- Hotkeys - awful.key({ modkey, }, "s", hotkeys_popup.show_help, - {description = "show help", group="awesome"}), - -- Tag browsing - awful.key({ modkey, }, "Left", awful.tag.viewprev, - {description = "view previous", group = "tag"}), - awful.key({ modkey, }, "Right", awful.tag.viewnext, - {description = "view next", group = "tag"}), - awful.key({ modkey, }, "Escape", awful.tag.history.restore, - {description = "go back", group = "tag"}), - - -- Non-empty tag browsing - awful.key({ altkey }, "Left", function () lain.util.tag_view_nonempty(-1) end, - {description = "view previous nonempty", group = "tag"}), - awful.key({ altkey }, "Right", function () lain.util.tag_view_nonempty(1) end, - {description = "view previous nonempty", group = "tag"}), - - -- Default client focus - awful.key({ altkey, }, "j", - function () - awful.client.focus.byidx( 1) - end, - {description = "focus next by index", group = "client"} - ), - awful.key({ altkey, }, "k", - function () - awful.client.focus.byidx(-1) - end, - {description = "focus previous by index", group = "client"} - ), - - -- By direction client focus - awful.key({ modkey }, "j", - function() - awful.client.focus.global_bydirection("down") - if client.focus then client.focus:raise() end - end, - {description = "focus down", group = "client"}), - awful.key({ modkey }, "k", - function() - awful.client.focus.global_bydirection("up") - if client.focus then client.focus:raise() end - end, - {description = "focus up", group = "client"}), - awful.key({ modkey }, "h", - function() - awful.client.focus.global_bydirection("left") - if client.focus then client.focus:raise() end - end, - {description = "focus left", group = "client"}), - awful.key({ modkey }, "l", - function() - awful.client.focus.global_bydirection("right") - if client.focus then client.focus:raise() end - end, - {description = "focus right", group = "client"}), - awful.key({ modkey, }, "w", function () awful.util.mymainmenu:show() end, - {description = "show main menu", group = "awesome"}), - - -- Layout manipulation - awful.key({ altkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end, - {description = "swap with next client by index", group = "client"}), - awful.key({ altkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end, - {description = "swap with previous client by index", group = "client"}), - awful.key({ altkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end, - {description = "focus the next screen", group = "screen"}), - awful.key({ altkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end, - {description = "focus the previous screen", group = "screen"}), - awful.key({ altkey, }, "u", awful.client.urgent.jumpto, - {description = "jump to urgent client", group = "client"}), - awful.key({ altkey, }, "Tab", - function () - if cycle_prev then - awful.client.focus.history.previous() - else - awful.client.focus.byidx(-1) - end - if client.focus then - client.focus:raise() - end - end, - {description = "cycle with previous/go back", group = "client"}), - awful.key({ modkey, "Shift" }, "Tab", - function () - if cycle_prev then - awful.client.focus.byidx(1) - if client.focus then - client.focus:raise() - end - end - end, - {description = "go forth", group = "client"}), - - -- Show/Hide Wibox - awful.key({ modkey }, "b", function () - for s in screen do - s.mywibox.visible = not s.mywibox.visible - if s.mybottomwibox then - s.mybottomwibox.visible = not s.mybottomwibox.visible - end - end - end, - {description = "toggle wibox", group = "awesome"}), - - -- On the fly useless gaps change - awful.key({ altkey, "Control" }, "=", function () lain.util.useless_gaps_resize(1) end, - {description = "increment useless gaps", group = "tag"}), - awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) end, - {description = "decrement useless gaps", group = "tag"}), - - -- Dynamic tagging - awful.key({ modkey, "Shift" }, "n", function () lain.util.add_tag() end, - {description = "add new tag", group = "tag"}), - awful.key({ modkey, "Shift" }, "r", function () lain.util.rename_tag() end, - {description = "rename tag", group = "tag"}), - awful.key({ modkey, "Shift" }, "Left", function () lain.util.move_tag(-1) end, - {description = "move tag to the left", group = "tag"}), - awful.key({ modkey, "Shift" }, "Right", function () lain.util.move_tag(1) end, - {description = "move tag to the right", group = "tag"}), - awful.key({ modkey, "Shift" }, "d", function () lain.util.delete_tag() end, - {description = "delete tag", group = "tag"}), - - -- Standard program - awful.key({ altkey, }, "Return", function () awful.spawn(terminal) end, - {description = "open a terminal", group = "launcher"}), - awful.key({ modkey, "Control" }, "r", awesome.restart, - {description = "reload awesome", group = "awesome"}), - awful.key({ modkey, "Shift" }, "q", awesome.quit, - {description = "quit awesome", group = "awesome"}), - - awful.key({ altkey, "Shift" }, "l", function () awful.tag.incmwfact( 0.05) end, - {description = "increase master width factor", group = "layout"}), - awful.key({ altkey, "Shift" }, "h", function () awful.tag.incmwfact(-0.05) end, - {description = "decrease master width factor", group = "layout"}), - awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end, - {description = "increase the number of master clients", group = "layout"}), - awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1, nil, true) end, - {description = "decrease the number of master clients", group = "layout"}), - awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1, nil, true) end, - {description = "increase the number of columns", group = "layout"}), - awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1, nil, true) end, - {description = "decrease the number of columns", group = "layout"}), - awful.key({ altkey, }, "space", function () awful.layout.inc( 1) end, - {description = "select next", group = "layout"}), - awful.key({ altkey, "Shift" }, "space", function () awful.layout.inc(-1) end, - {description = "select previous", group = "layout"}), - - awful.key({ modkey, "Control" }, "n", - function () - local c = awful.client.restore() - -- Focus restored client - if c then - client.focus = c - c:raise() - end - end, - {description = "restore minimized", group = "client"}), - - -- Dropdown application - awful.key({ modkey, }, "z", function () awful.screen.focused().quake:toggle() end, - {description = "dropdown application", group = "launcher"}), - - -- Widgets popups - awful.key({ altkey, }, "c", function () if beautiful.cal then beautiful.cal.show(7) end end, - {description = "show calendar", group = "widgets"}), - awful.key({ altkey, }, "h", function () if beautiful.fs then beautiful.fs.show(7) end end, - {description = "show filesystem", group = "widgets"}), - awful.key({ altkey, }, "w", function () if beautiful.weather then beautiful.weather.show(7) end end, - {description = "show weather", group = "widgets"}), - - -- Brightness - awful.key({ }, "XF86MonBrightnessUp", function () os.execute("light -A 10") end, - {description = "+10%", group = "hotkeys"}), - awful.key({ }, "XF86MonBrightnessDown", function () os.execute("light -U 10") end, - {description = "-10%", group = "hotkeys"}), - - -- ALSA volume control - awful.key({ }, "XF86AudioRaiseVolume", function () - os.execute("pamixer --allow-boost -i 5") end), - -- os.execute("amixer set Master 5%+") end), - awful.key({ }, "XF86AudioLowerVolume", function () - os.execute("pamixer --allow-boost -d 5") end), - awful.key({ }, "XF86AudioMicMute", function () - os.execute("pactl set-source-mute @DEFAULT_SOURCE@ toggle") end), - --os.execute("amixer set Master 5%-") end), - awful.key({ }, "XF86AudioMute", function () - os.execute("amixer set Master toggle") end), - awful.key({ }, "XF86AudioPlay", function () - os.execute("playerctl play-pause") end), - awful.key({ }, "XF86AudioNext", function () - os.execute("playerctl next") end), - awful.key({ }, "XF86AudioPrev", function () - os.execute("playerctl previous") end), - - - -- MPD control - awful.key({ altkey, "Control" }, "Up", - function () - os.execute("mpc toggle") - beautiful.mpd.update() - end, - {description = "mpc toggle", group = "widgets"}), - awful.key({ altkey, "Control" }, "Down", - function () - os.execute("mpc stop") - beautiful.mpd.update() - end, - {description = "mpc stop", group = "widgets"}), - awful.key({ altkey, "Control" }, "Left", - function () - os.execute("mpc prev") - beautiful.mpd.update() - end, - {description = "mpc prev", group = "widgets"}), - awful.key({ altkey, "Control" }, "Right", - function () - os.execute("mpc next") - beautiful.mpd.update() - end, - {description = "mpc next", group = "widgets"}), - awful.key({ altkey }, "0", - function () - local common = { text = "MPD widget ", position = "top_middle", timeout = 2 } - if beautiful.mpd.timer.started then - beautiful.mpd.timer:stop() - common.text = common.text .. lain.util.markup.bold("OFF") - else - beautiful.mpd.timer:start() - common.text = common.text .. lain.util.markup.bold("ON") - end - naughty.notify(common) - end, - {description = "mpc on/off", group = "widgets"}), - - -- Copy primary to clipboard (terminals to gtk) - awful.key({ modkey }, "c", function () awful.spawn.with_shell("xsel | xsel -i -b") end, - {description = "copy terminal to gtk", group = "hotkeys"}), - -- Copy clipboard to primary (gtk to terminals) - awful.key({ modkey }, "v", function () awful.spawn.with_shell("xsel -b | xsel") end, - {description = "copy gtk to terminal", group = "hotkeys"}), - - -- User programs - awful.key({ altkey }, "b", function () awful.spawn(browser) end, - {description = "run browser", group = "launcher"}), - awful.key({ modkey }, "a", function () awful.spawn(gui_editor) end, - {description = "run gui editor", group = "launcher"}), - - -- Default - --[[ Menubar - awful.key({ modkey }, "p", function() menubar.show() end, - {description = "show the menubar", group = "launcher"}) - --]] - --[[ dmenu - awful.key({ modkey }, "x", function () - os.execute(string.format("dmenu_run -i -fn 'Monospace' -nb '%s' -nf '%s' -sb '%s' -sf '%s'", - beautiful.bg_normal, beautiful.fg_normal, beautiful.bg_focus, beautiful.fg_focus)) - end, - {description = "show dmenu", group = "launcher"}) - --]] - -- alternatively use rofi, a dmenu-like application with more features - -- check https://github.com/DaveDavenport/rofi for more details - --[[ rofi - awful.key({ modkey }, "x", function () - os.execute(string.format("rofi -show %s -theme %s", - 'run', 'dmenu')) - end, - {description = "show rofi", group = "launcher"}), - --]] - -- Prompt - awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end, - {description = "run prompt", group = "launcher"}), - - awful.key({ modkey }, "x", - function () - awful.prompt.run { - prompt = "Run Lua code: ", - textbox = awful.screen.focused().mypromptbox.widget, - exe_callback = awful.util.eval, - history_path = awful.util.get_cache_dir() .. "/history_eval" - } - end, - {description = "lua execute prompt", group = "awesome"}) - --]] -) - -clientkeys = my_table.join( - awful.key({ altkey, "Shift" }, "m", lain.util.magnify_client, - {description = "magnify client", group = "client"}), - awful.key({ modkey, }, "f", - function (c) - c.fullscreen = not c.fullscreen - c:raise() - end, - {description = "toggle fullscreen", group = "client"}), - awful.key({ altkey }, "q", function (c) c:kill() end, - {description = "close", group = "client"}), - awful.key({ modkey }, "q", function (c) c:kill() end, - {description = "close", group = "client"}), - - awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle , - {description = "toggle floating", group = "client"}), - awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, - {description = "move to master", group = "client"}), - awful.key({ altkey, }, "o", function (c) c:move_to_screen() end, - {description = "move to screen", group = "client"}), - awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end, - {description = "toggle keep on top", group = "client"}), - awful.key({ modkey, }, "n", - function (c) - -- The client currently has the input focus, so it cannot be - -- minimized, since minimized clients can't have the focus. - c.minimized = true - end , - {description = "minimize", group = "client"}), - awful.key({ modkey, }, "m", - function (c) - c.maximized = not c.maximized - c:raise() - end , - {description = "maximize", group = "client"}) -) - --- Bind all key numbers to tags. --- Be careful: we use keycodes to make it works on any keyboard layout. --- This should map on the top row of your keyboard, usually 1 to 9. -for i = 1, 9 do - -- Hack to only show tags 1 and 9 in the shortcut window (mod+s) - local descr_view, descr_toggle, descr_move, descr_toggle_focus - if i == 1 or i == 9 then - descr_view = {description = "view tag #", group = "tag"} - descr_toggle = {description = "toggle tag #", group = "tag"} - descr_move = {description = "move focused client to tag #", group = "tag"} - descr_toggle_focus = {description = "toggle focused client on tag #", group = "tag"} - end - globalkeys = my_table.join(globalkeys, - -- View tag only. - awful.key({ altkey }, "#" .. i + 9, - function () - local screen = awful.screen.focused() - local tag = screen.tags[i] - if tag then - tag:view_only() - end - end, - descr_view), - -- Toggle tag display. - awful.key({ modkey, "Control" }, "#" .. i + 9, - function () - local screen = awful.screen.focused() - local tag = screen.tags[i] - if tag then - awful.tag.viewtoggle(tag) - end - end, - descr_toggle), - -- Move client to tag. - awful.key({ altkey, "Shift" }, "#" .. i + 9, - function () - if client.focus then - local tag = client.focus.screen.tags[i] - if tag then - client.focus:move_to_tag(tag) - end - end - end, - descr_move), - -- Toggle tag on focused client. - awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9, - function () - if client.focus then - local tag = client.focus.screen.tags[i] - if tag then - client.focus:toggle_tag(tag) - end - end - end, - descr_toggle_focus) - ) -end - -clientbuttons = gears.table.join( - awful.button({ }, 1, function (c) - c:emit_signal("request::activate", "mouse_click", {raise = true}) - end), - awful.button({ modkey }, 1, function (c) - c:emit_signal("request::activate", "mouse_click", {raise = true}) - awful.mouse.client.move(c) - end), - awful.button({ modkey }, 3, function (c) - c:emit_signal("request::activate", "mouse_click", {raise = true}) - awful.mouse.client.resize(c) - end) -) - --- Set keys -root.keys(globalkeys) --- }}} - --- {{{ Rules --- Rules to apply to new clients (through the "manage" signal). -awful.rules.rules = { - -- All clients will match this rule. - { rule = { }, - properties = { border_width = beautiful.border_width, - border_color = beautiful.border_normal, - focus = awful.client.focus.filter, - raise = true, - keys = clientkeys, - buttons = clientbuttons, - screen = awful.screen.preferred, - placement = awful.placement.no_overlap+awful.placement.no_offscreen, - size_hints_honor = false - } - }, - - -- Titlebars - { rule_any = { type = { "dialog", "normal" } }, - properties = { titlebars_enabled = false } }, - - -- Set Firefox to always map on the first tag on screen 1. - { rule = { class = "Firefox" }, - properties = { screen = 1, tag = awful.util.tagnames[1] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized = true } }, -} --- }}} - --- {{{ Signals --- Signal function to execute when a new client appears. -client.connect_signal("manage", function (c) - -- Set the windows at the slave, - -- i.e. put it at the end of others instead of setting it master. - -- if not awesome.startup then awful.client.setslave(c) end - - if awesome.startup and - not c.size_hints.user_position - and not c.size_hints.program_position then - -- Prevent clients from being unreachable after screen count changes. - awful.placement.no_offscreen(c) - end -end) - --- Add a titlebar if titlebars_enabled is set to true in the rules. -client.connect_signal("request::titlebars", function(c) - -- Custom - if beautiful.titlebar_fun then - beautiful.titlebar_fun(c) - return - end - - -- Default - -- buttons for the titlebar - local buttons = my_table.join( - awful.button({ }, 1, function() - c:emit_signal("request::activate", "titlebar", {raise = true}) - awful.mouse.client.move(c) - end), - awful.button({ }, 2, function() c:kill() end), - awful.button({ }, 3, function() - c:emit_signal("request::activate", "titlebar", {raise = true}) - awful.mouse.client.resize(c) - end) - ) - - awful.titlebar(c, {size = dpi(16)}) : setup { - { -- Left - awful.titlebar.widget.iconwidget(c), - buttons = buttons, - layout = wibox.layout.fixed.horizontal - }, - { -- Middle - { -- Title - align = "center", - widget = awful.titlebar.widget.titlewidget(c) - }, - buttons = buttons, - layout = wibox.layout.flex.horizontal - }, - { -- Right - awful.titlebar.widget.floatingbutton (c), - awful.titlebar.widget.maximizedbutton(c), - awful.titlebar.widget.stickybutton (c), - awful.titlebar.widget.ontopbutton (c), - awful.titlebar.widget.closebutton (c), - layout = wibox.layout.fixed.horizontal() - }, - layout = wibox.layout.align.horizontal - } -end) - --- Enable sloppy focus, so that focus follows mouse. -client.connect_signal("mouse::enter", function(c) - c:emit_signal("request::activate", "mouse_enter", {raise = vi_focus}) -end) -collectgarbage("setpause",160) -collectgarbage("setstepmul",400) - -client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end) -client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) - --- possible workaround for tag preservation when switching back to default screen: --- https://github.com/lcpz/awesome-copycats/issues/251 --- }}} diff --git a/awesome/.config/awesome/rc.lua.back b/awesome/.config/awesome/rc.lua.back deleted file mode 100755 index 8cb0cb1..0000000 --- a/awesome/.config/awesome/rc.lua.back +++ /dev/null @@ -1,612 +0,0 @@ --- If LuaRocks is installed, make sure that packages installed through it are --- found (e.g. lgi). If LuaRocks is not installed, do nothing. -pcall(require, "luarocks.loader") -local batteryarc_widget = require("awesome-wm-widgets.batteryarc-widget.batteryarc") -local brightness_widget = require("awesome-wm-widgets.brightness-widget.brightness") -local volumearc_widget = require("awesome-wm-widgets.volumearc-widget.volumearc") -local cpu_widget = require("awesome-wm-widgets.cpu-widget.cpu-widget") -local weather_widget = require("awesome-wm-widgets.weather-widget.weather") --- Standard awesome library -local gears = require("gears") -local awful = require("awful") -require("awful.autofocus") --- Widget and layout library -local wibox = require("wibox") --- Theme handling library -local beautiful = require("beautiful") --- Notification library -local naughty = require("naughty") -local menubar = require("menubar") -local hotkeys_popup = require("awful.hotkeys_popup") --- Enable hotkeys help widget for VIM and other apps --- when client with a matching name is opened: -require("awful.hotkeys_popup.keys") - --- {{{ Error handling --- Check if awesome encountered an error during startup and fell back to --- another config (This code will only ever execute for the fallback config) -if awesome.startup_errors then - naughty.notify({ preset = naughty.config.presets.critical, - title = "Oops, there were errors during startup!", - text = awesome.startup_errors }) -end - --- Handle runtime errors after startup -do - local in_error = false - awesome.connect_signal("debug::error", function (err) - -- Make sure we don't go into an endless error loop - if in_error then return end - in_error = true - - naughty.notify({ preset = naughty.config.presets.critical, - title = "Oops, an error happened!", - text = tostring(err) }) - in_error = false - end) -end --- }}} - --- {{{ Variable definitions --- Themes define colours, icons, font and wallpapers. -beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua") - --- This is used later as the default terminal and editor to run. -terminal = "terminology" -editor = os.getenv("EDITOR") or "nvim" -editor_cmd = terminal .. " -e " .. editor - --- Default modkey. --- Usually, Mod4 is the key with a logo between Control and Alt. --- If you do not like this or do not have such a key, --- I suggest you to remap Mod4 to another key using xmodmap or other tools. --- However, you can use another modifier like Mod1, but it may interact with others. -modkey = "Mod1" - --- Table of layouts to cover with awful.layout.inc, order matters. -awful.layout.layouts = { - awful.layout.suit.floating, - awful.layout.suit.tile, - awful.layout.suit.tile.left, - awful.layout.suit.tile.bottom, - awful.layout.suit.tile.top, - awful.layout.suit.fair, - awful.layout.suit.fair.horizontal, - awful.layout.suit.spiral, - awful.layout.suit.spiral.dwindle, - awful.layout.suit.max, - awful.layout.suit.max.fullscreen, - awful.layout.suit.magnifier, - awful.layout.suit.corner.nw, - -- awful.layout.suit.corner.ne, - -- awful.layout.suit.corner.sw, - -- awful.layout.suit.corner.se, -} --- }}} - --- {{{ Menu --- Create a launcher widget and a main menu -myawesomemenu = { - { "hotkeys", function() hotkeys_popup.show_help(nil, awful.screen.focused()) end }, - { "manual", terminal .. " -e man awesome" }, - { "edit config", editor_cmd .. " " .. awesome.conffile }, - { "restart", awesome.restart }, - { "quit", function() awesome.quit() end }, -} - -mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon }, - { "open terminal", terminal } - } - }) - -mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon, - menu = mymainmenu }) - --- Menubar configuration -menubar.utils.terminal = terminal -- Set the terminal for applications that require it --- }}} - --- Keyboard map indicator and switcher -mykeyboardlayout = awful.widget.keyboardlayout() - --- {{{ Wibar --- Create a textclock widget -mytextclock = wibox.widget.textclock() --- Create a wibox for each screen and add it -local taglist_buttons = gears.table.join( - awful.button({ }, 1, function(t) t:view_only() end), - awful.button({ modkey }, 1, function(t) - if client.focus then - client.focus:move_to_tag(t) - end - end), - awful.button({ }, 3, awful.tag.viewtoggle), - awful.button({ modkey }, 3, function(t) - if client.focus then - client.focus:toggle_tag(t) - end - end), - awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end), - awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end) - ) - -local tasklist_buttons = gears.table.join( - awful.button({ }, 1, function (c) - if c == client.focus then - c.minimized = true - else - c:emit_signal( - "request::activate", - "tasklist", - {raise = true} - ) - end - end), - awful.button({ }, 3, function() - awful.menu.client_list({ theme = { width = 250 } }) - end), - awful.button({ }, 4, function () - awful.client.focus.byidx(1) - end), - awful.button({ }, 5, function () - awful.client.focus.byidx(-1) - end)) - -local function set_wallpaper(s) - -- Wallpaper - if beautiful.wallpaper then - local wallpaper = beautiful.wallpaper - -- If wallpaper is a function, call it with the screen - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - end -end - --- Re-set wallpaper when a screen's geometry changes (e.g. different resolution) -screen.connect_signal("property::geometry", set_wallpaper) - -awful.screen.connect_for_each_screen(function(s) - -- Wallpaper - set_wallpaper(s) - - -- Each screen has its own tag table. - awful.tag({ "1", "2", "3", "4", "5", "6", "7", "8", "9" }, s, awful.layout.layouts[2]) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - -- Create an imagebox widget which will contain an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(gears.table.join( - awful.button({ }, 1, function () awful.layout.inc( 1) end), - awful.button({ }, 3, function () awful.layout.inc(-1) end), - awful.button({ }, 4, function () awful.layout.inc( 1) end), - awful.button({ }, 5, function () awful.layout.inc(-1) end))) - -- Create a taglist widget - s.mytaglist = awful.widget.taglist { - screen = s, - filter = awful.widget.taglist.filter.all, - buttons = taglist_buttons - } - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist { - screen = s, - filter = awful.widget.tasklist.filter.currenttags, - buttons = tasklist_buttons - } - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s }) -local vert_sep = wibox.widget { - widget = wibox.widget.separator, - orientation = "vertical", - forced_width = 10, - color = "#353535", -} - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - mylauncher, - s.mytaglist, - s.mypromptbox, - }, - s.mytasklist, -- Middle widget - { -- Right widgets - tbox_separator = wibox.widget.textbox(" | "), - layout = wibox.layout.fixed.horizontal, - cpu_widget({ - width = 70, - step_width = 2, - step_spacing = 0, - color = '#434c5e' - }), - vert_sep; - weather_widget({ - api_key='<8f182658370a173d8c0a6d5bb499590f>', - coordinates = {28.1684, -25.8337}, - time_format_12h = true, - units = 'metric', - both_units_widget = true, - font_name = 'Carter One', - icons = 'VitalyGorbachev', - show_hourly_forecast = true, - show_daily_forecast = true, -}), - vert_sep; - volumearc_widget({ - width = 70, - }), - vert_sep, - batteryarc_widget(), - vert_sep, - brightness_widget(), - vert_sep, - mytextclock, - s.mylayoutbox, - }, - } -end) --- }}} - --- {{{ Mouse bindings -root.buttons(gears.table.join( - awful.button({ }, 3, function () mymainmenu:toggle() end), - awful.button({ }, 4, awful.tag.viewnext), - awful.button({ }, 5, awful.tag.viewprev) -)) --- }}} - --- {{{ Key bindings -globalkeys = gears.table.join( - awful.key({ modkey, }, "s", hotkeys_popup.show_help, - {description="show help", group="awesome"}), - awful.key({ modkey, }, "Left", awful.tag.viewprev, - {description = "view previous", group = "tag"}), - awful.key({ modkey, }, "Right", awful.tag.viewnext, - {description = "view next", group = "tag"}), - awful.key({ modkey, }, "Escape", awful.tag.history.restore, - {description = "go back", group = "tag"}), - - awful.key({ modkey, }, "j", - function () - awful.client.focus.byidx( 1) - end, - {description = "focus next by index", group = "client"} - ), - awful.key({ modkey, }, "k", - function () - awful.client.focus.byidx(-1) - end, - {description = "focus previous by index", group = "client"} - ), - awful.key({ modkey, }, "w", function () mymainmenu:show() end, - {description = "show main menu", group = "awesome"}), - - -- Layout manipulation - awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end, - {description = "swap with next client by index", group = "client"}), - awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end, - {description = "swap with previous client by index", group = "client"}), - awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end, - {description = "focus the next screen", group = "screen"}), - awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end, - {description = "focus the previous screen", group = "screen"}), - awful.key({ modkey, }, "u", awful.client.urgent.jumpto, - {description = "jump to urgent client", group = "client"}), - awful.key({ modkey, }, "Tab", - function () - awful.client.focus.history.previous() - if client.focus then - client.focus:raise() - end - end, - {description = "go back", group = "client"}), - - -- Standard program - awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, - {description = "open a terminal", group = "launcher"}), - awful.key({ modkey, "Control" }, "r", awesome.restart, - {description = "reload awesome", group = "awesome"}), - awful.key({ modkey, "Shift" }, "q", awesome.quit, - {description = "quit awesome", group = "awesome"}), - - awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end, - {description = "increase master width factor", group = "layout"}), - awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end, - {description = "decrease master width factor", group = "layout"}), - awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end, - {description = "increase the number of master clients", group = "layout"}), - awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1, nil, true) end, - {description = "decrease the number of master clients", group = "layout"}), - awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1, nil, true) end, - {description = "increase the number of columns", group = "layout"}), - awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1, nil, true) end, - {description = "decrease the number of columns", group = "layout"}), - awful.key({ modkey, }, "space", function () awful.layout.inc( 1) end, - {description = "select next", group = "layout"}), - awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1) end, - {description = "select previous", group = "layout"}), - - awful.key({ modkey, "Control" }, "n", - function () - local c = awful.client.restore() - -- Focus restored client - if c then - c:emit_signal( - "request::activate", "key.unminimize", {raise = true} - ) - end - end, - {description = "restore minimized", group = "client"}), - - -- Prompt - awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end, - {description = "run prompt", group = "launcher"}), - - awful.key({ modkey }, "x", - function () - awful.prompt.run { - prompt = "Run Lua code: ", - textbox = awful.screen.focused().mypromptbox.widget, - exe_callback = awful.util.eval, - history_path = awful.util.get_cache_dir() .. "/history_eval" - } - end, - {description = "lua execute prompt", group = "awesome"}), - -- Menubar - awful.key({ modkey }, "p", function() menubar.show() end, - {description = "show the menubar", group = "launcher"}) -) - -clientkeys = gears.table.join( - awful.key({ }, "XF86MonBrightnessDown", function () - os.execute("light -U 5") end), - awful.key({ }, "XF86MonBrightnessUp", function () - os.execute("light -A 5") end), - awful.key({ }, "XF86AudioRaiseVolume", function () - os.execute("amixer set Master 5%+") end), - awful.key({ }, "XF86AudioLowerVolume", function () - os.execute("amixer set Master 5%-") end), - awful.key({ }, "XF86AudioMute", function () - os.execute("amixer set Master toggle") end), - - awful.key({ modkey, }, "f", - function (c) - c.fullscreen = not c.fullscreen - c:raise() - end, - {description = "toggle fullscreen", group = "client"}), - awful.key({ modkey }, "q", function (c) c:kill() end, - {description = "close", group = "client"}), - awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle , - {description = "toggle floating", group = "client"}), - awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, - {description = "move to master", group = "client"}), - awful.key({ modkey, }, "o", function (c) c:move_to_screen() end, - {description = "move to screen", group = "client"}), - awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end, - {description = "toggle keep on top", group = "client"}), - awful.key({ modkey, }, "n", - function (c) - -- The client currently has the input focus, so it cannot be - -- minimized, since minimized clients can't have the focus. - c.minimized = true - end , - {description = "minimize", group = "client"}), - awful.key({ modkey, }, "m", - function (c) - c.maximized = not c.maximized - c:raise() - end , - {description = "(un)maximize", group = "client"}), - awful.key({ modkey, "Control" }, "m", - function (c) - c.maximized_vertical = not c.maximized_vertical - c:raise() - end , - {description = "(un)maximize vertically", group = "client"}), - awful.key({ modkey, "Shift" }, "m", - function (c) - c.maximized_horizontal = not c.maximized_horizontal - c:raise() - end , - {description = "(un)maximize horizontally", group = "client"}) -) - --- Bind all key numbers to tags. --- Be careful: we use keycodes to make it work on any keyboard layout. --- This should map on the top row of your keyboard, usually 1 to 9. -for i = 1, 9 do - globalkeys = gears.table.join(globalkeys, - -- View tag only. - awful.key({ modkey }, "#" .. i + 9, - function () - local screen = awful.screen.focused() - local tag = screen.tags[i] - if tag then - tag:view_only() - end - end, - {description = "view tag #"..i, group = "tag"}), - -- Toggle tag display. - awful.key({ modkey, "Control" }, "#" .. i + 9, - function () - local screen = awful.screen.focused() - local tag = screen.tags[i] - if tag then - awful.tag.viewtoggle(tag) - end - end, - {description = "toggle tag #" .. i, group = "tag"}), - -- Move client to tag. - awful.key({ modkey, "Shift" }, "#" .. i + 9, - function () - if client.focus then - local tag = client.focus.screen.tags[i] - if tag then - client.focus:move_to_tag(tag) - end - end - end, - {description = "move focused client to tag #"..i, group = "tag"}), - -- Toggle tag on focused client. - awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9, - function () - if client.focus then - local tag = client.focus.screen.tags[i] - if tag then - client.focus:toggle_tag(tag) - end - end - end, - {description = "toggle focused client on tag #" .. i, group = "tag"}) - ) -end - -clientbuttons = gears.table.join( - awful.button({ }, 1, function (c) - c:emit_signal("request::activate", "mouse_click", {raise = true}) - end), - awful.button({ modkey }, 1, function (c) - c:emit_signal("request::activate", "mouse_click", {raise = true}) - awful.mouse.client.move(c) - end), - awful.button({ modkey }, 3, function (c) - c:emit_signal("request::activate", "mouse_click", {raise = true}) - awful.mouse.client.resize(c) - end) -) - --- Set keys -root.keys(globalkeys) --- }}} - --- {{{ Rules --- Rules to apply to new clients (through the "manage" signal). -awful.rules.rules = { - -- All clients will match this rule. - { rule = { }, - properties = { border_width = beautiful.border_width, - border_color = beautiful.border_normal, - focus = awful.client.focus.filter, - raise = true, - keys = clientkeys, - buttons = clientbuttons, - screen = awful.screen.preferred, - placement = awful.placement.no_overlap+awful.placement.no_offscreen - } - }, - - -- Floating clients. - { rule_any = { - instance = { - "DTA", -- Firefox addon DownThemAll. - "copyq", -- Includes session name in class. - "pinentry", - }, - class = { - "Arandr", - "Blueman-manager", - "Gpick", - "Kruler", - "MessageWin", -- kalarm. - "Sxiv", - "Tor Browser", -- Needs a fixed window size to avoid fingerprinting by screen size. - "Wpa_gui", - "veromix", - "xtightvncviewer"}, - - -- Note that the name property shown in xprop might be set slightly after creation of the client - -- and the name shown there might not match defined rules here. - name = { - "Event Tester", -- xev. - }, - role = { - "AlarmWindow", -- Thunderbird's calendar. - "ConfigManager", -- Thunderbird's about:config. - "pop-up", -- e.g. Google Chrome's (detached) Developer Tools. - } - }, properties = { floating = true }}, - - -- Add titlebars to normal clients and dialogs - { rule_any = {type = { "normal", "dialog" } - }, properties = { titlebars_enabled = false} - }, - - -- Set Firefox to always map on the tag named "2" on screen 1. - -- { rule = { class = "Firefox" }, - -- properties = { screen = 1, tag = "2" } }, -} --- }}} - --- {{{ Signals --- Signal function to execute when a new client appears. -client.connect_signal("manage", function (c) - -- Set the windows at the slave, - -- i.e. put it at the end of others instead of setting it master. - -- if not awesome.startup then awful.client.setslave(c) end - - if awesome.startup - and not c.size_hints.user_position - and not c.size_hints.program_position then - -- Prevent clients from being unreachable after screen count changes. - awful.placement.no_offscreen(c) - end -end) - --- Add a titlebar if titlebars_enabled is set to true in the rules. -client.connect_signal("request::titlebars", function(c) - -- buttons for the titlebar - local buttons = gears.table.join( - awful.button({ }, 1, function() - c:emit_signal("request::activate", "titlebar", {raise = true}) - awful.mouse.client.move(c) - end), - awful.button({ }, 3, function() - c:emit_signal("request::activate", "titlebar", {raise = true}) - awful.mouse.client.resize(c) - end) - ) - - awful.titlebar(c) : setup { - { -- Left - awful.titlebar.widget.iconwidget(c), - buttons = buttons, - layout = wibox.layout.fixed.horizontal - }, - { -- Middle - { -- Title - align = "center", - widget = awful.titlebar.widget.titlewidget(c) - }, - buttons = buttons, - layout = wibox.layout.flex.horizontal - }, - { -- Right - awful.titlebar.widget.floatingbutton (c), - awful.titlebar.widget.maximizedbutton(c), - awful.titlebar.widget.stickybutton (c), - awful.titlebar.widget.ontopbutton (c), - awful.titlebar.widget.closebutton (c), - layout = wibox.layout.fixed.horizontal() - }, - layout = wibox.layout.align.horizontal - } -end) - --- Enable sloppy focus, so that focus follows mouse. -client.connect_signal("mouse::enter", function(c) - c:emit_signal("request::activate", "mouse_enter", {raise = false}) -end) - -client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end) -client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) --- }}} - -awful.spawn("picom") diff --git a/awesome/.config/awesome/rc.lua.template b/awesome/.config/awesome/rc.lua.template deleted file mode 100755 index 3fa7b65..0000000 --- a/awesome/.config/awesome/rc.lua.template +++ /dev/null @@ -1,777 +0,0 @@ ---[[ - - Awesome WM configuration template - github.com/lcpz - ---]] - --- {{{ Required libraries -local awesome, client, mouse, screen, tag = awesome, client, mouse, screen, tag -local ipairs, string, os, table, tostring, tonumber, type = ipairs, string, os, table, tostring, tonumber, type - -local gears = require("gears") -local awful = require("awful") - require("awful.autofocus") -local wibox = require("wibox") -local beautiful = require("beautiful") -local naughty = require("naughty") -local lain = require("lain") ---local menubar = require("menubar") -local freedesktop = require("freedesktop") -local hotkeys_popup = require("awful.hotkeys_popup").widget - require("awful.hotkeys_popup.keys") -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility -local dpi = require("beautiful.xresources").apply_dpi --- }}} - --- {{{ Error handling --- Check if awesome encountered an error during startup and fell back to --- another config (This code will only ever execute for the fallback config) -if awesome.startup_errors then - naughty.notify({ preset = naughty.config.presets.critical, - title = "Oops, there were errors during startup!", - text = awesome.startup_errors }) -end - --- Handle runtime errors after startup -do - local in_error = false - awesome.connect_signal("debug::error", function (err) - if in_error then return end - in_error = true - - naughty.notify({ preset = naughty.config.presets.critical, - title = "Oops, an error happened!", - text = tostring(err) }) - in_error = false - end) -end --- }}} - --- {{{ Autostart windowless processes - --- This function will run once every time Awesome is started -local function run_once(cmd_arr) - for _, cmd in ipairs(cmd_arr) do - awful.spawn.with_shell(string.format("pgrep -u $USER -fx '%s' > /dev/null || (%s)", cmd, cmd)) - end -end - -run_once({ "urxvtd", "unclutter -root" }) -- entries must be separated by commas - --- This function implements the XDG autostart specification ---[[ -awful.spawn.with_shell( - 'if (xrdb -query | grep -q "^awesome\\.started:\\s*true$"); then exit; fi;' .. - 'xrdb -merge <<< "awesome.started:true";' .. - -- list each of your autostart commands, followed by ; inside single quotes, followed by .. - 'dex --environment Awesome --autostart --search-paths "$XDG_CONFIG_DIRS/autostart:$XDG_CONFIG_HOME/autostart"' -- https://github.com/jceb/dex -) ---]] - --- }}} - --- {{{ Variable definitions - -local themes = { - "blackburn", -- 1 - "copland", -- 2 - "dremora", -- 3 - "holo", -- 4 - "multicolor", -- 5 - "powerarrow", -- 6 - "powerarrow-dark", -- 7 - "rainbow", -- 8 - "steamburn", -- 9 - "vertex", -- 10 -} - -local chosen_theme = themes[5] -local modkey = "Mod4" -local altkey = "Mod1" -local terminal = "urxvtc" -local vi_focus = false -- vi-like client focus - https://github.com/lcpz/awesome-copycats/issues/275 -local cycle_prev = true -- cycle trough all previous client or just the first -- https://github.com/lcpz/awesome-copycats/issues/274 -local editor = os.getenv("EDITOR") or "vim" -local gui_editor = os.getenv("GUI_EDITOR") or "gvim" -local browser = os.getenv("BROWSER") or "firefox" -local scrlocker = "slock" - -awful.util.terminal = terminal -awful.util.tagnames = { "1", "2", "3", "4", "5" } -awful.layout.layouts = { - awful.layout.suit.floating, - awful.layout.suit.tile, - awful.layout.suit.tile.left, - awful.layout.suit.tile.bottom, - awful.layout.suit.tile.top, - --awful.layout.suit.fair, - --awful.layout.suit.fair.horizontal, - --awful.layout.suit.spiral, - --awful.layout.suit.spiral.dwindle, - --awful.layout.suit.max, - --awful.layout.suit.max.fullscreen, - --awful.layout.suit.magnifier, - --awful.layout.suit.corner.nw, - --awful.layout.suit.corner.ne, - --awful.layout.suit.corner.sw, - --awful.layout.suit.corner.se, - --lain.layout.cascade, - --lain.layout.cascade.tile, - --lain.layout.centerwork, - --lain.layout.centerwork.horizontal, - --lain.layout.termfair, - --lain.layout.termfair.center, -} - -awful.util.taglist_buttons = my_table.join( - awful.button({ }, 1, function(t) t:view_only() end), - awful.button({ modkey }, 1, function(t) - if client.focus then - client.focus:move_to_tag(t) - end - end), - awful.button({ }, 3, awful.tag.viewtoggle), - awful.button({ modkey }, 3, function(t) - if client.focus then - client.focus:toggle_tag(t) - end - end), - awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end), - awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end) -) - -awful.util.tasklist_buttons = my_table.join( - awful.button({ }, 1, function (c) - if c == client.focus then - c.minimized = true - else - --c:emit_signal("request::activate", "tasklist", {raise = true}) - - -- Without this, the following - -- :isvisible() makes no sense - c.minimized = false - if not c:isvisible() and c.first_tag then - c.first_tag:view_only() - end - -- This will also un-minimize - -- the client, if needed - client.focus = c - c:raise() - end - end), - awful.button({ }, 2, function (c) c:kill() end), - awful.button({ }, 3, function () - local instance = nil - - return function () - if instance and instance.wibox.visible then - instance:hide() - instance = nil - else - instance = awful.menu.clients({theme = {width = dpi(250)}}) - end - end - end), - awful.button({ }, 4, function () awful.client.focus.byidx(1) end), - awful.button({ }, 5, function () awful.client.focus.byidx(-1) end) -) - -lain.layout.termfair.nmaster = 3 -lain.layout.termfair.ncol = 1 -lain.layout.termfair.center.nmaster = 3 -lain.layout.termfair.center.ncol = 1 -lain.layout.cascade.tile.offset_x = dpi(2) -lain.layout.cascade.tile.offset_y = dpi(32) -lain.layout.cascade.tile.extra_padding = dpi(5) -lain.layout.cascade.tile.nmaster = 5 -lain.layout.cascade.tile.ncol = 2 - -beautiful.init(string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), chosen_theme)) --- }}} - --- {{{ Menu -local myawesomemenu = { - { "hotkeys", function() return false, hotkeys_popup.show_help end }, - { "manual", terminal .. " -e man awesome" }, - { "edit config", string.format("%s -e %s %s", terminal, editor, awesome.conffile) }, - { "restart", awesome.restart }, - { "quit", function() awesome.quit() end } -} -awful.util.mymainmenu = freedesktop.menu.build({ - icon_size = beautiful.menu_height or dpi(16), - before = { - { "Awesome", myawesomemenu, beautiful.awesome_icon }, - -- other triads can be put here - }, - after = { - { "Open terminal", terminal }, - -- other triads can be put here - } -}) --- hide menu when mouse leaves it ---awful.util.mymainmenu.wibox:connect_signal("mouse::leave", function() awful.util.mymainmenu:hide() end) - ---menubar.utils.terminal = terminal -- Set the Menubar terminal for applications that require it --- }}} - --- {{{ Screen --- Re-set wallpaper when a screen's geometry changes (e.g. different resolution) -screen.connect_signal("property::geometry", function(s) - -- Wallpaper - if beautiful.wallpaper then - local wallpaper = beautiful.wallpaper - -- If wallpaper is a function, call it with the screen - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - end -end) - --- No borders when rearranging only 1 non-floating or maximized client -screen.connect_signal("arrange", function (s) - local only_one = #s.tiled_clients == 1 - for _, c in pairs(s.clients) do - if only_one and not c.floating or c.maximized then - c.border_width = 0 - else - c.border_width = beautiful.border_width - end - end -end) --- Create a wibox for each screen and add it -awful.screen.connect_for_each_screen(function(s) beautiful.at_screen_connect(s) end) --- }}} - --- {{{ Mouse bindings -root.buttons(my_table.join( - awful.button({ }, 3, function () awful.util.mymainmenu:toggle() end), - awful.button({ }, 4, awful.tag.viewnext), - awful.button({ }, 5, awful.tag.viewprev) -)) --- }}} - --- {{{ Key bindings -globalkeys = my_table.join( - -- Take a screenshot - -- https://github.com/lcpz/dots/blob/master/bin/screenshot - awful.key({ altkey }, "p", function() os.execute("screenshot") end, - {description = "take a screenshot", group = "hotkeys"}), - - -- X screen locker - awful.key({ altkey, "Control" }, "l", function () os.execute(scrlocker) end, - {description = "lock screen", group = "hotkeys"}), - - -- Hotkeys - awful.key({ modkey, }, "s", hotkeys_popup.show_help, - {description = "show help", group="awesome"}), - -- Tag browsing - awful.key({ modkey, }, "Left", awful.tag.viewprev, - {description = "view previous", group = "tag"}), - awful.key({ modkey, }, "Right", awful.tag.viewnext, - {description = "view next", group = "tag"}), - awful.key({ modkey, }, "Escape", awful.tag.history.restore, - {description = "go back", group = "tag"}), - - -- Non-empty tag browsing - awful.key({ altkey }, "Left", function () lain.util.tag_view_nonempty(-1) end, - {description = "view previous nonempty", group = "tag"}), - awful.key({ altkey }, "Right", function () lain.util.tag_view_nonempty(1) end, - {description = "view previous nonempty", group = "tag"}), - - -- Default client focus - awful.key({ altkey, }, "j", - function () - awful.client.focus.byidx( 1) - end, - {description = "focus next by index", group = "client"} - ), - awful.key({ altkey, }, "k", - function () - awful.client.focus.byidx(-1) - end, - {description = "focus previous by index", group = "client"} - ), - - -- By direction client focus - awful.key({ modkey }, "j", - function() - awful.client.focus.global_bydirection("down") - if client.focus then client.focus:raise() end - end, - {description = "focus down", group = "client"}), - awful.key({ modkey }, "k", - function() - awful.client.focus.global_bydirection("up") - if client.focus then client.focus:raise() end - end, - {description = "focus up", group = "client"}), - awful.key({ modkey }, "h", - function() - awful.client.focus.global_bydirection("left") - if client.focus then client.focus:raise() end - end, - {description = "focus left", group = "client"}), - awful.key({ modkey }, "l", - function() - awful.client.focus.global_bydirection("right") - if client.focus then client.focus:raise() end - end, - {description = "focus right", group = "client"}), - awful.key({ modkey, }, "w", function () awful.util.mymainmenu:show() end, - {description = "show main menu", group = "awesome"}), - - -- Layout manipulation - awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end, - {description = "swap with next client by index", group = "client"}), - awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end, - {description = "swap with previous client by index", group = "client"}), - awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end, - {description = "focus the next screen", group = "screen"}), - awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end, - {description = "focus the previous screen", group = "screen"}), - awful.key({ modkey, }, "u", awful.client.urgent.jumpto, - {description = "jump to urgent client", group = "client"}), - awful.key({ modkey, }, "Tab", - function () - if cycle_prev then - awful.client.focus.history.previous() - else - awful.client.focus.byidx(-1) - end - if client.focus then - client.focus:raise() - end - end, - {description = "cycle with previous/go back", group = "client"}), - awful.key({ modkey, "Shift" }, "Tab", - function () - if cycle_prev then - awful.client.focus.byidx(1) - if client.focus then - client.focus:raise() - end - end - end, - {description = "go forth", group = "client"}), - - -- Show/Hide Wibox - awful.key({ modkey }, "b", function () - for s in screen do - s.mywibox.visible = not s.mywibox.visible - if s.mybottomwibox then - s.mybottomwibox.visible = not s.mybottomwibox.visible - end - end - end, - {description = "toggle wibox", group = "awesome"}), - - -- On the fly useless gaps change - awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end, - {description = "increment useless gaps", group = "tag"}), - awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) end, - {description = "decrement useless gaps", group = "tag"}), - - -- Dynamic tagging - awful.key({ modkey, "Shift" }, "n", function () lain.util.add_tag() end, - {description = "add new tag", group = "tag"}), - awful.key({ modkey, "Shift" }, "r", function () lain.util.rename_tag() end, - {description = "rename tag", group = "tag"}), - awful.key({ modkey, "Shift" }, "Left", function () lain.util.move_tag(-1) end, - {description = "move tag to the left", group = "tag"}), - awful.key({ modkey, "Shift" }, "Right", function () lain.util.move_tag(1) end, - {description = "move tag to the right", group = "tag"}), - awful.key({ modkey, "Shift" }, "d", function () lain.util.delete_tag() end, - {description = "delete tag", group = "tag"}), - - -- Standard program - awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, - {description = "open a terminal", group = "launcher"}), - awful.key({ modkey, "Control" }, "r", awesome.restart, - {description = "reload awesome", group = "awesome"}), - awful.key({ modkey, "Shift" }, "q", awesome.quit, - {description = "quit awesome", group = "awesome"}), - - awful.key({ altkey, "Shift" }, "l", function () awful.tag.incmwfact( 0.05) end, - {description = "increase master width factor", group = "layout"}), - awful.key({ altkey, "Shift" }, "h", function () awful.tag.incmwfact(-0.05) end, - {description = "decrease master width factor", group = "layout"}), - awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end, - {description = "increase the number of master clients", group = "layout"}), - awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1, nil, true) end, - {description = "decrease the number of master clients", group = "layout"}), - awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1, nil, true) end, - {description = "increase the number of columns", group = "layout"}), - awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1, nil, true) end, - {description = "decrease the number of columns", group = "layout"}), - awful.key({ modkey, }, "space", function () awful.layout.inc( 1) end, - {description = "select next", group = "layout"}), - awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1) end, - {description = "select previous", group = "layout"}), - - awful.key({ modkey, "Control" }, "n", - function () - local c = awful.client.restore() - -- Focus restored client - if c then - client.focus = c - c:raise() - end - end, - {description = "restore minimized", group = "client"}), - - -- Dropdown application - awful.key({ modkey, }, "z", function () awful.screen.focused().quake:toggle() end, - {description = "dropdown application", group = "launcher"}), - - -- Widgets popups - awful.key({ altkey, }, "c", function () if beautiful.cal then beautiful.cal.show(7) end end, - {description = "show calendar", group = "widgets"}), - awful.key({ altkey, }, "h", function () if beautiful.fs then beautiful.fs.show(7) end end, - {description = "show filesystem", group = "widgets"}), - awful.key({ altkey, }, "w", function () if beautiful.weather then beautiful.weather.show(7) end end, - {description = "show weather", group = "widgets"}), - - -- Brightness - awful.key({ }, "XF86MonBrightnessUp", function () os.execute("xbacklight -inc 10") end, - {description = "+10%", group = "hotkeys"}), - awful.key({ }, "XF86MonBrightnessDown", function () os.execute("xbacklight -dec 10") end, - {description = "-10%", group = "hotkeys"}), - - -- ALSA volume control - awful.key({ altkey }, "Up", - function () - os.execute(string.format("amixer -q set %s 1%%+", beautiful.volume.channel)) - beautiful.volume.update() - end, - {description = "volume up", group = "hotkeys"}), - awful.key({ altkey }, "Down", - function () - os.execute(string.format("amixer -q set %s 1%%-", beautiful.volume.channel)) - beautiful.volume.update() - end, - {description = "volume down", group = "hotkeys"}), - awful.key({ altkey }, "m", - function () - os.execute(string.format("amixer -q set %s toggle", beautiful.volume.togglechannel or beautiful.volume.channel)) - beautiful.volume.update() - end, - {description = "toggle mute", group = "hotkeys"}), - awful.key({ altkey, "Control" }, "m", - function () - os.execute(string.format("amixer -q set %s 100%%", beautiful.volume.channel)) - beautiful.volume.update() - end, - {description = "volume 100%", group = "hotkeys"}), - awful.key({ altkey, "Control" }, "0", - function () - os.execute(string.format("amixer -q set %s 0%%", beautiful.volume.channel)) - beautiful.volume.update() - end, - {description = "volume 0%", group = "hotkeys"}), - - -- MPD control - awful.key({ altkey, "Control" }, "Up", - function () - os.execute("mpc toggle") - beautiful.mpd.update() - end, - {description = "mpc toggle", group = "widgets"}), - awful.key({ altkey, "Control" }, "Down", - function () - os.execute("mpc stop") - beautiful.mpd.update() - end, - {description = "mpc stop", group = "widgets"}), - awful.key({ altkey, "Control" }, "Left", - function () - os.execute("mpc prev") - beautiful.mpd.update() - end, - {description = "mpc prev", group = "widgets"}), - awful.key({ altkey, "Control" }, "Right", - function () - os.execute("mpc next") - beautiful.mpd.update() - end, - {description = "mpc next", group = "widgets"}), - awful.key({ altkey }, "0", - function () - local common = { text = "MPD widget ", position = "top_middle", timeout = 2 } - if beautiful.mpd.timer.started then - beautiful.mpd.timer:stop() - common.text = common.text .. lain.util.markup.bold("OFF") - else - beautiful.mpd.timer:start() - common.text = common.text .. lain.util.markup.bold("ON") - end - naughty.notify(common) - end, - {description = "mpc on/off", group = "widgets"}), - - -- Copy primary to clipboard (terminals to gtk) - awful.key({ modkey }, "c", function () awful.spawn.with_shell("xsel | xsel -i -b") end, - {description = "copy terminal to gtk", group = "hotkeys"}), - -- Copy clipboard to primary (gtk to terminals) - awful.key({ modkey }, "v", function () awful.spawn.with_shell("xsel -b | xsel") end, - {description = "copy gtk to terminal", group = "hotkeys"}), - - -- User programs - awful.key({ modkey }, "q", function () awful.spawn(browser) end, - {description = "run browser", group = "launcher"}), - awful.key({ modkey }, "a", function () awful.spawn(gui_editor) end, - {description = "run gui editor", group = "launcher"}), - - -- Default - --[[ Menubar - awful.key({ modkey }, "p", function() menubar.show() end, - {description = "show the menubar", group = "launcher"}) - --]] - --[[ dmenu - awful.key({ modkey }, "x", function () - os.execute(string.format("dmenu_run -i -fn 'Monospace' -nb '%s' -nf '%s' -sb '%s' -sf '%s'", - beautiful.bg_normal, beautiful.fg_normal, beautiful.bg_focus, beautiful.fg_focus)) - end, - {description = "show dmenu", group = "launcher"}) - --]] - -- alternatively use rofi, a dmenu-like application with more features - -- check https://github.com/DaveDavenport/rofi for more details - --[[ rofi - awful.key({ modkey }, "x", function () - os.execute(string.format("rofi -show %s -theme %s", - 'run', 'dmenu')) - end, - {description = "show rofi", group = "launcher"}), - --]] - -- Prompt - awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end, - {description = "run prompt", group = "launcher"}), - - awful.key({ modkey }, "x", - function () - awful.prompt.run { - prompt = "Run Lua code: ", - textbox = awful.screen.focused().mypromptbox.widget, - exe_callback = awful.util.eval, - history_path = awful.util.get_cache_dir() .. "/history_eval" - } - end, - {description = "lua execute prompt", group = "awesome"}) - --]] -) - -clientkeys = my_table.join( - awful.key({ altkey, "Shift" }, "m", lain.util.magnify_client, - {description = "magnify client", group = "client"}), - awful.key({ modkey, }, "f", - function (c) - c.fullscreen = not c.fullscreen - c:raise() - end, - {description = "toggle fullscreen", group = "client"}), - awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end, - {description = "close", group = "client"}), - awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle , - {description = "toggle floating", group = "client"}), - awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, - {description = "move to master", group = "client"}), - awful.key({ modkey, }, "o", function (c) c:move_to_screen() end, - {description = "move to screen", group = "client"}), - awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end, - {description = "toggle keep on top", group = "client"}), - awful.key({ modkey, }, "n", - function (c) - -- The client currently has the input focus, so it cannot be - -- minimized, since minimized clients can't have the focus. - c.minimized = true - end , - {description = "minimize", group = "client"}), - awful.key({ modkey, }, "m", - function (c) - c.maximized = not c.maximized - c:raise() - end , - {description = "maximize", group = "client"}) -) - --- Bind all key numbers to tags. --- Be careful: we use keycodes to make it works on any keyboard layout. --- This should map on the top row of your keyboard, usually 1 to 9. -for i = 1, 9 do - -- Hack to only show tags 1 and 9 in the shortcut window (mod+s) - local descr_view, descr_toggle, descr_move, descr_toggle_focus - if i == 1 or i == 9 then - descr_view = {description = "view tag #", group = "tag"} - descr_toggle = {description = "toggle tag #", group = "tag"} - descr_move = {description = "move focused client to tag #", group = "tag"} - descr_toggle_focus = {description = "toggle focused client on tag #", group = "tag"} - end - globalkeys = my_table.join(globalkeys, - -- View tag only. - awful.key({ modkey }, "#" .. i + 9, - function () - local screen = awful.screen.focused() - local tag = screen.tags[i] - if tag then - tag:view_only() - end - end, - descr_view), - -- Toggle tag display. - awful.key({ modkey, "Control" }, "#" .. i + 9, - function () - local screen = awful.screen.focused() - local tag = screen.tags[i] - if tag then - awful.tag.viewtoggle(tag) - end - end, - descr_toggle), - -- Move client to tag. - awful.key({ modkey, "Shift" }, "#" .. i + 9, - function () - if client.focus then - local tag = client.focus.screen.tags[i] - if tag then - client.focus:move_to_tag(tag) - end - end - end, - descr_move), - -- Toggle tag on focused client. - awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9, - function () - if client.focus then - local tag = client.focus.screen.tags[i] - if tag then - client.focus:toggle_tag(tag) - end - end - end, - descr_toggle_focus) - ) -end - -clientbuttons = gears.table.join( - awful.button({ }, 1, function (c) - c:emit_signal("request::activate", "mouse_click", {raise = true}) - end), - awful.button({ modkey }, 1, function (c) - c:emit_signal("request::activate", "mouse_click", {raise = true}) - awful.mouse.client.move(c) - end), - awful.button({ modkey }, 3, function (c) - c:emit_signal("request::activate", "mouse_click", {raise = true}) - awful.mouse.client.resize(c) - end) -) - --- Set keys -root.keys(globalkeys) --- }}} - --- {{{ Rules --- Rules to apply to new clients (through the "manage" signal). -awful.rules.rules = { - -- All clients will match this rule. - { rule = { }, - properties = { border_width = beautiful.border_width, - border_color = beautiful.border_normal, - focus = awful.client.focus.filter, - raise = true, - keys = clientkeys, - buttons = clientbuttons, - screen = awful.screen.preferred, - placement = awful.placement.no_overlap+awful.placement.no_offscreen, - size_hints_honor = false - } - }, - - -- Titlebars - { rule_any = { type = { "dialog", "normal" } }, - properties = { titlebars_enabled = true } }, - - -- Set Firefox to always map on the first tag on screen 1. - { rule = { class = "Firefox" }, - properties = { screen = 1, tag = awful.util.tagnames[1] } }, - - { rule = { class = "Gimp", role = "gimp-image-window" }, - properties = { maximized = true } }, -} --- }}} - --- {{{ Signals --- Signal function to execute when a new client appears. -client.connect_signal("manage", function (c) - -- Set the windows at the slave, - -- i.e. put it at the end of others instead of setting it master. - -- if not awesome.startup then awful.client.setslave(c) end - - if awesome.startup and - not c.size_hints.user_position - and not c.size_hints.program_position then - -- Prevent clients from being unreachable after screen count changes. - awful.placement.no_offscreen(c) - end -end) - --- Add a titlebar if titlebars_enabled is set to true in the rules. -client.connect_signal("request::titlebars", function(c) - -- Custom - if beautiful.titlebar_fun then - beautiful.titlebar_fun(c) - return - end - - -- Default - -- buttons for the titlebar - local buttons = my_table.join( - awful.button({ }, 1, function() - c:emit_signal("request::activate", "titlebar", {raise = true}) - awful.mouse.client.move(c) - end), - awful.button({ }, 2, function() c:kill() end), - awful.button({ }, 3, function() - c:emit_signal("request::activate", "titlebar", {raise = true}) - awful.mouse.client.resize(c) - end) - ) - - awful.titlebar(c, {size = dpi(16)}) : setup { - { -- Left - awful.titlebar.widget.iconwidget(c), - buttons = buttons, - layout = wibox.layout.fixed.horizontal - }, - { -- Middle - { -- Title - align = "center", - widget = awful.titlebar.widget.titlewidget(c) - }, - buttons = buttons, - layout = wibox.layout.flex.horizontal - }, - { -- Right - awful.titlebar.widget.floatingbutton (c), - awful.titlebar.widget.maximizedbutton(c), - awful.titlebar.widget.stickybutton (c), - awful.titlebar.widget.ontopbutton (c), - awful.titlebar.widget.closebutton (c), - layout = wibox.layout.fixed.horizontal() - }, - layout = wibox.layout.align.horizontal - } -end) - --- Enable sloppy focus, so that focus follows mouse. -client.connect_signal("mouse::enter", function(c) - c:emit_signal("request::activate", "mouse_enter", {raise = vi_focus}) -end) - -client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end) -client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) - --- possible workaround for tag preservation when switching back to default screen: --- https://github.com/lcpz/awesome-copycats/issues/251 --- }}} diff --git a/awesome/.config/awesome/themes/blackburn/icons/awesome.png b/awesome/.config/awesome/themes/blackburn/icons/awesome.png deleted file mode 100755 index 947a06d..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/awesome.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/dwindle.png b/awesome/.config/awesome/themes/blackburn/icons/dwindle.png deleted file mode 100755 index 2f4b4ac..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/dwindle.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/fairh.png b/awesome/.config/awesome/themes/blackburn/icons/fairh.png deleted file mode 100755 index b0030e7..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/fairh.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/fairv.png b/awesome/.config/awesome/themes/blackburn/icons/fairv.png deleted file mode 100755 index 2c0e157..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/fairv.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/floating.png b/awesome/.config/awesome/themes/blackburn/icons/floating.png deleted file mode 100755 index e0bdd4b..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/floating.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/magnifier.png b/awesome/.config/awesome/themes/blackburn/icons/magnifier.png deleted file mode 100755 index 3713108..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/magnifier.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/max.png b/awesome/.config/awesome/themes/blackburn/icons/max.png deleted file mode 100755 index 8828d12..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/max.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/spiral.png b/awesome/.config/awesome/themes/blackburn/icons/spiral.png deleted file mode 100755 index 54c2c5e..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/spiral.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/square_sel.png b/awesome/.config/awesome/themes/blackburn/icons/square_sel.png deleted file mode 100755 index 6938cca..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/square_sel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/square_unsel.png b/awesome/.config/awesome/themes/blackburn/icons/square_unsel.png deleted file mode 100755 index dd8064d..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/square_unsel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/submenu.png b/awesome/.config/awesome/themes/blackburn/icons/submenu.png deleted file mode 100755 index 10ca014..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/submenu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/tile.png b/awesome/.config/awesome/themes/blackburn/icons/tile.png deleted file mode 100755 index 409141f..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/tile.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/tilebottom.png b/awesome/.config/awesome/themes/blackburn/icons/tilebottom.png deleted file mode 100755 index de68e9c..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/tilebottom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/tileleft.png b/awesome/.config/awesome/themes/blackburn/icons/tileleft.png deleted file mode 100755 index c47e4ee..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/tileleft.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/tiletop.png b/awesome/.config/awesome/themes/blackburn/icons/tiletop.png deleted file mode 100755 index c50abdf..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/tiletop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/close_focus.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/close_focus.png deleted file mode 100755 index d0bc2e8..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/close_focus.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/close_normal.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/close_normal.png deleted file mode 100755 index f99db1a..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/close_normal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_focus_active.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_focus_active.png deleted file mode 100755 index 1a0649f..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_focus_inactive.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_focus_inactive.png deleted file mode 100755 index 47f19f6..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_normal_active.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_normal_active.png deleted file mode 100755 index 44b8dac..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_normal_inactive.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_normal_inactive.png deleted file mode 100755 index 98f7f1d..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/floating_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_focus_active.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_focus_active.png deleted file mode 100755 index eab9b37..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_focus_inactive.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_focus_inactive.png deleted file mode 100755 index bce1d00..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_normal_active.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_normal_active.png deleted file mode 100755 index 4f03984..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_normal_inactive.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_normal_inactive.png deleted file mode 100755 index 2e56d32..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/maximized_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_focus_active.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_focus_active.png deleted file mode 100755 index 42a9770..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_focus_inactive.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_focus_inactive.png deleted file mode 100755 index 2f3a2be..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_normal_active.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_normal_active.png deleted file mode 100755 index 499dfbf..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_normal_inactive.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_normal_inactive.png deleted file mode 100755 index a9a3206..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/ontop_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_focus_active.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_focus_active.png deleted file mode 100755 index 72864ac..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_focus_inactive.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_focus_inactive.png deleted file mode 100755 index 5493d8e..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_normal_active.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_normal_active.png deleted file mode 100755 index a150154..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_normal_inactive.png b/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_normal_inactive.png deleted file mode 100755 index 7e6c99b..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/icons/titlebar/sticky_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/blackburn/theme.lua b/awesome/.config/awesome/themes/blackburn/theme.lua deleted file mode 100755 index d1a2f26..0000000 --- a/awesome/.config/awesome/themes/blackburn/theme.lua +++ /dev/null @@ -1,275 +0,0 @@ ---[[ - - Blackburn Awesome WM theme 3.0 - github.com/lcpz - ---]] - -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local os = os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/blackburn" -theme.wallpaper = theme.dir .. "/wall.png" -theme.font = "Terminus 10.5" -theme.taglist_font = "Icons 10" -theme.fg_normal = "#D7D7D7" -theme.fg_focus = "#F6784F" -theme.bg_normal = "#060606" -theme.bg_focus = "#060606" -theme.fg_urgent = "#CC9393" -theme.bg_urgent = "#2A1F1E" -theme.border_width = dpi(1) -theme.border_normal = "#0E0E0E" -theme.border_focus = "#F79372" -theme.taglist_fg_focus = "#F6784F" -theme.taglist_bg_focus = "#060606" -theme.tasklist_fg_focus = "#F6784F" -theme.tasklist_bg_focus = "#060606" -theme.menu_height = dpi(16) -theme.menu_width = dpi(130) -theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.awesome_icon = theme.dir .."/icons/awesome.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.layout_tile = theme.dir .. "/icons/tile.png" -theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_fairv = theme.dir .. "/icons/fairv.png" -theme.layout_fairh = theme.dir .. "/icons/fairh.png" -theme.layout_spiral = theme.dir .. "/icons/spiral.png" -theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_max = theme.dir .. "/icons/max.png" -theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" -theme.layout_floating = theme.dir .. "/icons/floating.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true -theme.useless_gap = 0 -theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" -theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" -theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" -theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" -theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" -theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" -theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" -theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" -theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" -theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" - -awful.util.tagnames = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" } - -local markup = lain.util.markup -local separators = lain.util.separators -local gray = "#9E9C9A" - --- Textclock -local mytextclock = wibox.widget.textclock(" %H:%M ") -mytextclock.font = theme.font - --- Calendar -theme.cal = lain.widget.cal({ - attach_to = { mytextclock }, - notification_preset = { - font = "Terminus 11", - fg = theme.fg_normal, - bg = theme.bg_normal - } -}) - --- Mail IMAP check ---[[ commented because it needs to be set before use -theme.mail = lain.widget.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - notification_preset = { fg = white } - settings = function() - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup.font(theme.font, markup(gray, mail) .. count)) - end -}) ---]] - --- MPD -theme.mpd = lain.widget.mpd({ - settings = function() - mpd_notification_preset.fg = white - artist = mpd_now.artist .. " " - title = mpd_now.title .. " " - - if mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - elseif mpd_now.state == "stop" then - artist = "" - title = "" - end - - widget:set_markup(markup.font(theme.font, markup(gray, artist) .. title .. " ")) - end -}) - --- /home fs ---[[ commented because it needs Gio/Glib >= 2.54 -theme.fs = lain.widget.fs({ - notification_preset = { fg = white, bg = theme.bg_normal, font = "Terminus 10.5" }, - settings = function() - fs_header = "" - fs_p = "" - - if fs_now["/home"].percentage >= 90 then - fs_header = " Hdd " - fs_p = fs_now["/home"].percentage - end - - widget:set_markup(markup.font(theme.font, markup(gray, fs_header) .. fs_p)) - end -}) ---]] - --- Battery -local bat = lain.widget.bat({ - settings = function() - bat_header = " Bat " - bat_p = bat_now.perc .. " " - widget:set_markup(markup.font(theme.font, markup(gray, bat_header) .. bat_p)) - end -}) - --- ALSA volume -theme.volume = lain.widget.alsa({ - --togglechannel = "IEC958,3", - settings = function() - header = " Vol " - vlevel = volume_now.level - - if volume_now.status == "off" then - vlevel = vlevel .. "M " - else - vlevel = vlevel .. " " - end - - widget:set_markup(markup.font(theme.font, markup(gray, header) .. vlevel)) - end -}) - --- Weather -theme.weather = lain.widget.weather({ - city_id = 2643743, -- placeholder (London) - settings = function() - units = math.floor(weather_now["main"]["temp"]) - widget:set_markup(" " .. units .. " ") - end -}) - --- Separators -local first = wibox.widget.textbox(' ') -local arrl_pre = separators.arrow_right("alpha", "#1A1A1A") -local arrl_post = separators.arrow_right("#1A1A1A", "alpha") - -local barheight = dpi(18) -local barcolor = gears.color({ - type = "linear", - from = { barheight, 0 }, - to = { barheight, barheight }, - stops = { {0, theme.bg_focus }, {0.8, theme.border_normal}, {1, "#1A1A1A"} } -}) -theme.titlebar_bg = barcolor - -theme.titlebar_bg_focus = gears.color({ - type = "linear", - from = { barheight, 0 }, - to = { barheight, barheight }, - stops = { {0, theme.bg_normal}, {0.5, theme.border_normal}, {1, "#492417"} } -}) - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - -- Create an imagebox widget which will contains an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(my_table.join( - awful.button({}, 1, function () awful.layout.inc( 1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function () awful.layout.inc(-1) end), - awful.button({}, 4, function () awful.layout.inc( 1) end), - awful.button({}, 5, function () awful.layout.inc(-1) end))) - - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons, { bg_normal = barcolor, bg_focus = barcolor }) - - -- Create the wibox - -- s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = barcolor }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - first, - s.mytaglist, - arrl_pre, - s.mylayoutbox, - arrl_post, - s.mypromptbox, - first, - }, - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - first, - theme.mpd.widget, - --theme.mail.widget, - theme.weather.icon, - theme.weather.widget, - --theme.fs.widget, - bat, - theme.volume.widget, - mytextclock, - }, - } -end - -return theme diff --git a/awesome/.config/awesome/themes/blackburn/wall.png b/awesome/.config/awesome/themes/blackburn/wall.png deleted file mode 100755 index 6774d91..0000000 Binary files a/awesome/.config/awesome/themes/blackburn/wall.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/ac.png b/awesome/.config/awesome/themes/copland/icons/ac.png deleted file mode 100755 index 4b00cd1..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/ac.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/awesome.png b/awesome/.config/awesome/themes/copland/icons/awesome.png deleted file mode 100755 index b24e00d..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/awesome.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/bat.png b/awesome/.config/awesome/themes/copland/icons/bat.png deleted file mode 100755 index 4ea9b2b..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/bat.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/bat_low.png b/awesome/.config/awesome/themes/copland/icons/bat_low.png deleted file mode 100755 index c198675..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/bat_low.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/bat_no.png b/awesome/.config/awesome/themes/copland/icons/bat_no.png deleted file mode 100755 index 5cf536f..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/bat_no.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/centerfair.png b/awesome/.config/awesome/themes/copland/icons/centerfair.png deleted file mode 100755 index 185d5e1..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/centerfair.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/centerwork.png b/awesome/.config/awesome/themes/copland/icons/centerwork.png deleted file mode 100755 index 49d5a11..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/centerwork.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/disk.png b/awesome/.config/awesome/themes/copland/icons/disk.png deleted file mode 100755 index 3ccd728..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/disk.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/dwindle.png b/awesome/.config/awesome/themes/copland/icons/dwindle.png deleted file mode 100755 index 55b61b0..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/dwindle.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/fairh.png b/awesome/.config/awesome/themes/copland/icons/fairh.png deleted file mode 100755 index 848f5a8..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/fairh.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/fairv.png b/awesome/.config/awesome/themes/copland/icons/fairv.png deleted file mode 100755 index 610eb7b..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/fairv.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/floating.png b/awesome/.config/awesome/themes/copland/icons/floating.png deleted file mode 100755 index d8ce00a..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/floating.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/fullscreen.png b/awesome/.config/awesome/themes/copland/icons/fullscreen.png deleted file mode 100755 index feb44d1..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/fullscreen.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/magnifier.png b/awesome/.config/awesome/themes/copland/icons/magnifier.png deleted file mode 100755 index 49616bc..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/magnifier.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/max.png b/awesome/.config/awesome/themes/copland/icons/max.png deleted file mode 100755 index 3f4bdec..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/max.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/pause.png b/awesome/.config/awesome/themes/copland/icons/pause.png deleted file mode 100755 index 381e532..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/pause.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/play.png b/awesome/.config/awesome/themes/copland/icons/play.png deleted file mode 100755 index 05ad253..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/play.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/spiral.png b/awesome/.config/awesome/themes/copland/icons/spiral.png deleted file mode 100755 index 664afb4..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/spiral.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/square_sel.png b/awesome/.config/awesome/themes/copland/icons/square_sel.png deleted file mode 100755 index 58b58f2..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/square_sel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/square_unsel.png b/awesome/.config/awesome/themes/copland/icons/square_unsel.png deleted file mode 100755 index 40411f4..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/square_unsel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/stop.png b/awesome/.config/awesome/themes/copland/icons/stop.png deleted file mode 100755 index b01b75e..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/stop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/submenu.png b/awesome/.config/awesome/themes/copland/icons/submenu.png deleted file mode 100755 index 10ed739..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/submenu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/termfair.png b/awesome/.config/awesome/themes/copland/icons/termfair.png deleted file mode 100755 index 9cfb636..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/termfair.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/tile.png b/awesome/.config/awesome/themes/copland/icons/tile.png deleted file mode 100755 index 890e354..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/tile.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/tilebottom.png b/awesome/.config/awesome/themes/copland/icons/tilebottom.png deleted file mode 100755 index aac4302..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/tilebottom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/tileleft.png b/awesome/.config/awesome/themes/copland/icons/tileleft.png deleted file mode 100755 index c87a32f..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/tileleft.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/tiletop.png b/awesome/.config/awesome/themes/copland/icons/tiletop.png deleted file mode 100755 index 89f7f8d..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/tiletop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/close_focus.png b/awesome/.config/awesome/themes/copland/icons/titlebar/close_focus.png deleted file mode 100755 index c1fa3ad..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/close_focus.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/close_normal.png b/awesome/.config/awesome/themes/copland/icons/titlebar/close_normal.png deleted file mode 100755 index 77cd8eb..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/close_normal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/floating_focus_active.png b/awesome/.config/awesome/themes/copland/icons/titlebar/floating_focus_active.png deleted file mode 100755 index 8fcf336..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/floating_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/floating_focus_inactive.png b/awesome/.config/awesome/themes/copland/icons/titlebar/floating_focus_inactive.png deleted file mode 100755 index 47f19f6..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/floating_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/floating_normal_active.png b/awesome/.config/awesome/themes/copland/icons/titlebar/floating_normal_active.png deleted file mode 100755 index df17970..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/floating_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/floating_normal_inactive.png b/awesome/.config/awesome/themes/copland/icons/titlebar/floating_normal_inactive.png deleted file mode 100755 index 98f7f1d..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/floating_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_focus_active.png b/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_focus_active.png deleted file mode 100755 index 96e8937..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_focus_inactive.png b/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_focus_inactive.png deleted file mode 100755 index bce1d00..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_normal_active.png b/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_normal_active.png deleted file mode 100755 index 6ce0b10..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_normal_inactive.png b/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_normal_inactive.png deleted file mode 100755 index 2e56d32..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/maximized_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_focus_active.png b/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_focus_active.png deleted file mode 100755 index d206ea4..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_focus_inactive.png b/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_focus_inactive.png deleted file mode 100755 index 2f3a2be..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_normal_active.png b/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_normal_active.png deleted file mode 100755 index 9a26d34..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_normal_inactive.png b/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_normal_inactive.png deleted file mode 100755 index a9a3206..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/ontop_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_focus_active.png b/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_focus_active.png deleted file mode 100755 index 7e360db..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_focus_inactive.png b/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_focus_inactive.png deleted file mode 100755 index 5493d8e..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_normal_active.png b/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_normal_active.png deleted file mode 100755 index a06138d..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_normal_inactive.png b/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_normal_inactive.png deleted file mode 100755 index 7e6c99b..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/titlebar/sticky_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/vol.png b/awesome/.config/awesome/themes/copland/icons/vol.png deleted file mode 100755 index 847d575..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/vol.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/vol_low.png b/awesome/.config/awesome/themes/copland/icons/vol_low.png deleted file mode 100755 index 54d653e..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/vol_low.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/vol_mute.png b/awesome/.config/awesome/themes/copland/icons/vol_mute.png deleted file mode 100755 index 361412d..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/vol_mute.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/icons/vol_no.png b/awesome/.config/awesome/themes/copland/icons/vol_no.png deleted file mode 100755 index 06d1a97..0000000 Binary files a/awesome/.config/awesome/themes/copland/icons/vol_no.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/copland/theme.lua b/awesome/.config/awesome/themes/copland/theme.lua deleted file mode 100755 index 877cbd6..0000000 --- a/awesome/.config/awesome/themes/copland/theme.lua +++ /dev/null @@ -1,372 +0,0 @@ ---[[ - - Copland Awesome WM theme 2.0 - github.com/lcpz - ---]] - -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local awesome, client, os = awesome, client, os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/copland" -theme.wallpaper = theme.dir .. "/wall.png" -theme.font = "Terminus 10.5" -theme.fg_normal = "#BBBBBB" -theme.fg_focus = "#78A4FF" -theme.bg_normal = "#111111" -theme.bg_focus = "#111111" -theme.fg_urgent = "#000000" -theme.bg_urgent = "#FFFFFF" -theme.border_width = dpi(1) -theme.border_normal = "#141414" -theme.border_focus = "#93B6FF" -theme.taglist_fg_focus = "#FFFFFF" -theme.taglist_bg_focus = "#111111" -theme.taglist_bg_normal = "#111111" -theme.titlebar_bg_normal = "#191919" -theme.titlebar_bg_focus = "#262626" -theme.menu_height = dpi(16) -theme.menu_width = dpi(130) -theme.tasklist_disable_icon = true -theme.awesome_icon = theme.dir .."/icons/awesome.png" -theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_unsel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.vol = theme.dir .. "/icons/vol.png" -theme.vol_low = theme.dir .. "/icons/vol_low.png" -theme.vol_no = theme.dir .. "/icons/vol_no.png" -theme.vol_mute = theme.dir .. "/icons/vol_mute.png" -theme.disk = theme.dir .. "/icons/disk.png" -theme.ac = theme.dir .. "/icons/ac.png" -theme.bat = theme.dir .. "/icons/bat.png" -theme.bat_low = theme.dir .. "/icons/bat_low.png" -theme.bat_no = theme.dir .. "/icons/bat_no.png" -theme.play = theme.dir .. "/icons/play.png" -theme.pause = theme.dir .. "/icons/pause.png" -theme.stop = theme.dir .. "/icons/stop.png" -theme.layout_tile = theme.dir .. "/icons/tile.png" -theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_fairv = theme.dir .. "/icons/fairv.png" -theme.layout_fairh = theme.dir .. "/icons/fairh.png" -theme.layout_spiral = theme.dir .. "/icons/spiral.png" -theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_max = theme.dir .. "/icons/max.png" -theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" -theme.layout_floating = theme.dir .. "/icons/floating.png" -theme.useless_gap = 0 -theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" -theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" -theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" -theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" -theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" -theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" -theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" -theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" -theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" -theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" - --- lain related -theme.layout_centerfair = theme.dir .. "/icons/centerfair.png" -theme.layout_termfair = theme.dir .. "/icons/termfair.png" -theme.layout_centerwork = theme.dir .. "/icons/centerwork.png" - -local markup = lain.util.markup -local blue = theme.fg_focus -local red = "#EB8F8F" -local green = "#8FEB8F" - --- Textclock ---os.setlocale(os.getenv("LANG")) -- to localize the clock -local mytextclock = wibox.widget.textclock(" %H:%M ") -mytextclock.font = theme.font - --- Calendar -theme.cal = lain.widget.cal({ - attach_to = { mytextclock }, - notification_preset = { - font = "Terminus 11", - fg = theme.fg_normal, - bg = theme.bg_normal - } -}) - --- Mail IMAP check ---[[ commented because it needs to be set before use -theme.mail = lain.widget.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail = "" - count = "" - - if mailcount > 0 then - mail = " Mail " - count = mailcount .. " " - end - - widget:set_markup(markup(blue, mail) .. count) - end -}) ---]] - --- MPD -local mpdicon = wibox.widget.imagebox() -theme.mpd = lain.widget.mpd({ - settings = function() - if mpd_now.state == "play" then - title = mpd_now.title - artist = " " .. mpd_now.artist .. markup("#777777", " | ") - mpdicon:set_image(theme.play) - elseif mpd_now.state == "pause" then - title = "mpd " - artist = "paused" .. markup("#777777", " | ") - mpdicon:set_image(theme.pause) - else - title = "" - artist = "" - mpdicon._private.image = nil - mpdicon:emit_signal("widget::redraw_needed") - mpdicon:emit_signal("widget::layout_changed") - end - - widget:set_markup(markup.font(theme.font, markup(blue, title) .. artist)) - end -}) - --- Battery -local baticon = wibox.widget.imagebox(theme.bat) -local batbar = wibox.widget { - forced_height = dpi(1), - forced_width = dpi(59), - color = theme.fg_normal, - background_color = theme.bg_normal, - margins = 1, - paddings = 1, - ticks = true, - ticks_size = dpi(6), - widget = wibox.widget.progressbar, -} -local batupd = lain.widget.bat({ - settings = function() - if (not bat_now.status) or bat_now.status == "N/A" or type(bat_now.perc) ~= "number" then return end - - if bat_now.status == "Charging" then - baticon:set_image(theme.ac) - if bat_now.perc >= 98 then - batbar:set_color(green) - elseif bat_now.perc > 50 then - batbar:set_color(theme.fg_normal) - elseif bat_now.perc > 15 then - batbar:set_color(theme.fg_normal) - else - batbar:set_color(red) - end - else - if bat_now.perc >= 98 then - batbar:set_color(green) - elseif bat_now.perc > 50 then - batbar:set_color(theme.fg_normal) - baticon:set_image(theme.bat) - elseif bat_now.perc > 15 then - batbar:set_color(theme.fg_normal) - baticon:set_image(theme.bat_low) - else - batbar:set_color(red) - baticon:set_image(theme.bat_no) - end - end - batbar:set_value(bat_now.perc / 100) - end -}) -local batbg = wibox.container.background(batbar, "#474747", gears.shape.rectangle) -local batwidget = wibox.container.margin(batbg, dpi(2), dpi(7), dpi(4), dpi(4)) - --- /home fs ---[[ commented because it needs Gio/Glib >= 2.54 -local fsicon = wibox.widget.imagebox(theme.disk) -local fsbar = wibox.widget { - forced_height = dpi(1), - forced_width = dpi(59), - color = theme.fg_normal, - background_color = theme.bg_normal, - margins = 1, - paddings = 1, - ticks = true, - ticks_size = dpi(6), - widget = wibox.widget.progressbar, -} -theme.fs = lain.widget.fs { - notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Terminus 10.5" }, - settings = function() - if fs_now["/home"].percentage < 90 then - fsbar:set_color(theme.fg_normal) - else - fsbar:set_color("#EB8F8F") - end - fsbar:set_value(fs_now["/home"].percentage / 100) - end -} -local fsbg = wibox.container.background(fsbar, "#474747", gears.shape.rectangle) -local fswidget = wibox.container.margin(fsbg, dpi(2), dpi(7), dpi(4), dpi(4)) ---]] - --- ALSA volume bar -local volicon = wibox.widget.imagebox(theme.vol) -theme.volume = lain.widget.alsabar { - width = dpi(59), border_width = 0, ticks = true, ticks_size = dpi(6), - notification_preset = { font = theme.font }, - --togglechannel = "IEC958,3", - settings = function() - if volume_now.status == "off" then - volicon:set_image(theme.vol_mute) - elseif volume_now.level == 0 then - volicon:set_image(theme.vol_no) - elseif volume_now.level <= 50 then - volicon:set_image(theme.vol_low) - else - volicon:set_image(theme.vol) - end - end, - colors = { - background = theme.bg_normal, - mute = red, - unmute = theme.fg_normal - } -} -theme.volume.tooltip.wibox.fg = theme.fg_focus -theme.volume.bar:buttons(my_table.join ( - awful.button({}, 1, function() - awful.spawn(string.format("%s -e alsamixer", awful.util.terminal)) - end), - awful.button({}, 2, function() - os.execute(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel)) - theme.volume.update() - end), - awful.button({}, 3, function() - os.execute(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel)) - theme.volume.update() - end), - awful.button({}, 4, function() - os.execute(string.format("%s set %s 1%%+", theme.volume.cmd, theme.volume.channel)) - theme.volume.update() - end), - awful.button({}, 5, function() - os.execute(string.format("%s set %s 1%%-", theme.volume.cmd, theme.volume.channel)) - theme.volume.update() - end) -)) -local volumebg = wibox.container.background(theme.volume.bar, "#474747", gears.shape.rectangle) -local volumewidget = wibox.container.margin(volumebg, dpi(2), dpi(7), dpi(4), dpi(4)) - --- Weather -theme.weather = lain.widget.weather({ - city_id = 2643743, -- placeholder (London) -}) - --- Separators -local first = wibox.widget.textbox(markup.font("Terminus 3", " ")) -local spr = wibox.widget.textbox(' ') -local small_spr = wibox.widget.textbox(markup.font("Terminus 4", " ")) -local bar_spr = wibox.widget.textbox(markup.font("Terminus 3", " ") .. markup.fontfg(theme.font, "#777777", "|") .. markup.font("Terminus 5", " ")) - --- Eminent-like task filtering -local orig_filter = awful.widget.taglist.filter.all - --- Taglist label functions -awful.widget.taglist.filter.all = function (t, args) - if t.selected or #t:clients() > 0 then - return orig_filter(t, args) - end -end - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - -- Create an imagebox widget which will contains an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(my_table.join( - awful.button({}, 1, function () awful.layout.inc( 1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function () awful.layout.inc(-1) end), - awful.button({}, 4, function () awful.layout.inc( 1) end), - awful.button({}, 5, function () awful.layout.inc(-1) end))) - - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = theme.bg_normal, fg = theme.fg_normal }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - small_spr, - s.mylayoutbox, - first, - bar_spr, - s.mytaglist, - first, - s.mypromptbox, - }, - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - small_spr, - --theme.mail.widget, - mpdicon, - theme.mpd.widget, - baticon, - batwidget, - bar_spr, - --fsicon, - --fswidget, - bar_spr, - volicon, - volumewidget, - bar_spr, - mytextclock, - }, - } -end - -return theme diff --git a/awesome/.config/awesome/themes/copland/wall.png b/awesome/.config/awesome/themes/copland/wall.png deleted file mode 100755 index aa3ce51..0000000 Binary files a/awesome/.config/awesome/themes/copland/wall.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/awesome.png b/awesome/.config/awesome/themes/dremora/icons/awesome.png deleted file mode 100755 index ffb105e..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/awesome.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/dwindle.png b/awesome/.config/awesome/themes/dremora/icons/dwindle.png deleted file mode 100755 index 04f3918..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/dwindle.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/fairh.png b/awesome/.config/awesome/themes/dremora/icons/fairh.png deleted file mode 100755 index 0bb6dab..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/fairh.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/fairv.png b/awesome/.config/awesome/themes/dremora/icons/fairv.png deleted file mode 100755 index aff6c26..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/fairv.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/floating.png b/awesome/.config/awesome/themes/dremora/icons/floating.png deleted file mode 100755 index 5d021b1..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/floating.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/magnifier.png b/awesome/.config/awesome/themes/dremora/icons/magnifier.png deleted file mode 100755 index dd4dec3..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/magnifier.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/max.png b/awesome/.config/awesome/themes/dremora/icons/max.png deleted file mode 100755 index 7334f8b..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/max.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/spiral.png b/awesome/.config/awesome/themes/dremora/icons/spiral.png deleted file mode 100755 index 31cbbd0..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/spiral.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/square_sel.png b/awesome/.config/awesome/themes/dremora/icons/square_sel.png deleted file mode 100755 index 85cc605..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/square_sel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/square_unsel.png b/awesome/.config/awesome/themes/dremora/icons/square_unsel.png deleted file mode 100755 index 1c58e4b..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/square_unsel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/submenu.png b/awesome/.config/awesome/themes/dremora/icons/submenu.png deleted file mode 100755 index 988ef9e..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/submenu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/tile.png b/awesome/.config/awesome/themes/dremora/icons/tile.png deleted file mode 100755 index 72cbd6c..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/tile.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/tilebottom.png b/awesome/.config/awesome/themes/dremora/icons/tilebottom.png deleted file mode 100755 index a927128..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/tilebottom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/tileleft.png b/awesome/.config/awesome/themes/dremora/icons/tileleft.png deleted file mode 100755 index c54d1f5..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/tileleft.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/tiletop.png b/awesome/.config/awesome/themes/dremora/icons/tiletop.png deleted file mode 100755 index db74cf3..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/tiletop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/close_focus.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/close_focus.png deleted file mode 100755 index 221bca0..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/close_focus.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/close_normal.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/close_normal.png deleted file mode 100755 index f923983..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/close_normal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_focus_active.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_focus_active.png deleted file mode 100755 index d83bd00..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_focus_inactive.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_focus_inactive.png deleted file mode 100755 index 47f19f6..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_normal_active.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_normal_active.png deleted file mode 100755 index b788552..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_normal_inactive.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_normal_inactive.png deleted file mode 100755 index 4adc5e9..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/floating_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_focus_active.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_focus_active.png deleted file mode 100755 index 2599cd5..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_focus_inactive.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_focus_inactive.png deleted file mode 100755 index bce1d00..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_normal_active.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_normal_active.png deleted file mode 100755 index a5b1d76..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_normal_inactive.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_normal_inactive.png deleted file mode 100755 index 2e56d32..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/maximized_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_focus_active.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_focus_active.png deleted file mode 100755 index ade12fe..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_focus_inactive.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_focus_inactive.png deleted file mode 100755 index 2f3a2be..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_normal_active.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_normal_active.png deleted file mode 100755 index 02facc4..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_normal_inactive.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_normal_inactive.png deleted file mode 100755 index a9a3206..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/ontop_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_focus_active.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_focus_active.png deleted file mode 100755 index ebd45a1..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_focus_inactive.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_focus_inactive.png deleted file mode 100755 index 5493d8e..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_normal_active.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_normal_active.png deleted file mode 100755 index 15f0bc4..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_normal_inactive.png b/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_normal_inactive.png deleted file mode 100755 index 7e6c99b..0000000 Binary files a/awesome/.config/awesome/themes/dremora/icons/titlebar/sticky_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/dremora/theme.lua b/awesome/.config/awesome/themes/dremora/theme.lua deleted file mode 100755 index 8c4acaf..0000000 --- a/awesome/.config/awesome/themes/dremora/theme.lua +++ /dev/null @@ -1,253 +0,0 @@ ---[[ - - Dremora Awesome WM theme 2.0 - github.com/lcpz - ---]] - -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local os = os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/dremora" -theme.wallpaper = theme.dir .. "/wall.png" -theme.font = "Terminus 10.5" -theme.taglist_font = "Icons 10" -theme.fg_normal = "#747474" -theme.fg_focus = "#DDDCFF" -theme.bg_normal = "#121212" -theme.bg_focus = "#121212" -theme.fg_urgent = "#CC9393" -theme.bg_urgent = "#2A1F1E" -theme.border_width = dpi(0) -theme.border_normal = "#121212" -theme.border_focus = "#292929" -theme.titlebar_bg_focus = "#292929" -theme.taglist_fg_focus = "#dddcff" -theme.taglist_bg_focus = "#121212" -theme.menu_height = dpi(16) -theme.menu_width = dpi(130) -theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.awesome_icon = theme.dir .."/icons/awesome.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.layout_tile = theme.dir .. "/icons/tile.png" -theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_fairv = theme.dir .. "/icons/fairv.png" -theme.layout_fairh = theme.dir .. "/icons/fairh.png" -theme.layout_spiral = theme.dir .. "/icons/spiral.png" -theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_max = theme.dir .. "/icons/max.png" -theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" -theme.layout_floating = theme.dir .. "/icons/floating.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true -theme.useless_gap = dpi(10) -theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" -theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" -theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" -theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" -theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" -theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" -theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" -theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" -theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" -theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" - -awful.util.tagnames = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" } - -local markup = lain.util.markup -local separators = lain.util.separators -local white = theme.fg_focus -local gray = "#858585" - --- Textclock -local mytextclock = wibox.widget.textclock(markup(gray, " %a") -.. markup(white, " %d ") .. markup(gray, "%b ") .. markup(white, "%H:%M ")) -mytextclock.font = theme.font - --- Calendar -theme.cal = lain.widget.cal({ - attach_to = { mytextclock }, - notification_preset = { - font = "Terminus 11", - fg = white, - bg = theme.bg_normal -}}) - --- Mail IMAP check ---[[ commented because it needs to be set before use -theme.mail = lain.widget.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - notification_preset = { fg = white } - settings = function() - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup.font(theme.font, markup(gray, mail) .. markup(white, count))) - end -}) ---]] - --- MPD -theme.mpd = lain.widget.mpd({ - settings = function() - mpd_notification_preset.fg = white - artist = mpd_now.artist .. " " - title = mpd_now.title .. " " - - if mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - elseif mpd_now.state == "stop" then - artist = "" - title = "" - end - - widget:set_markup(markup.font(theme.font, markup(gray, artist) .. markup(white, title))) - end -}) - --- /home fs ---[[ commented because it needs Gio/Glib >= 2.54 -theme.fs = lain.widget.fs({ - notification_preset = { fg = white, bg = theme.bg_normal, font = "Terminus 10.5" }, - settings = function() - fs_header = "" - fs_p = "" - - if fs_now["/home"].percentage >= 90 then - fs_header = " Hdd " - fs_p = fs_now["/home"].percentage - end - - widget:set_markup(markup.font(theme.font, markup(gray, fs_header) .. markup(white, fs_p))) - end -}) ---]] - --- Battery -local bat = lain.widget.bat({ - settings = function() - bat_header = " Bat " - bat_p = bat_now.perc .. " " - widget:set_markup(markup.font(theme.font, markup(gray, bat_header) .. markup(white, bat_p))) - end -}) - --- ALSA volume -theme.volume = lain.widget.alsa({ - --togglechannel = "IEC958,3", - settings = function() - header = " Vol " - vlevel = volume_now.level - - if volume_now.status == "off" then - vlevel = vlevel .. "M " - else - vlevel = vlevel .. " " - end - - widget:set_markup(markup.font(theme.font, markup(gray, header) .. markup(white, vlevel))) - end -}) - --- Weather -theme.weather = lain.widget.weather({ - city_id = 2643743, -- placeholder (London) - notification_preset = { fg = white } -}) - --- Separators -local first = wibox.widget.textbox(' ') -local arrl_pre = separators.arrow_right("alpha", "#1A1A1A") -local arrl_post = separators.arrow_right("#1A1A1A", "alpha") - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - -- Create an imagebox widget which will contains an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(my_table.join( - awful.button({}, 1, function () awful.layout.inc( 1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function () awful.layout.inc(-1) end), - awful.button({}, 4, function () awful.layout.inc( 1) end), - awful.button({}, 5, function () awful.layout.inc(-1) end))) - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = theme.bg_normal, fg = theme.fg_normal }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - first, - s.mytaglist, - arrl_pre, - s.mylayoutbox, - arrl_post, - s.mypromptbox, - first, - }, - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - first, - theme.mpd.widget, - --theme.mail.widget, - --theme.fs.widget, - bat.widget, - theme.volume.widget, - mytextclock, - }, - } -end - -return theme diff --git a/awesome/.config/awesome/themes/dremora/wall.png b/awesome/.config/awesome/themes/dremora/wall.png deleted file mode 100755 index 4501b60..0000000 Binary files a/awesome/.config/awesome/themes/dremora/wall.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/awesome_icon.png b/awesome/.config/awesome/themes/holo/icons/awesome_icon.png deleted file mode 100755 index ae13162..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/awesome_icon.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/awesome_icon_white.png b/awesome/.config/awesome/themes/holo/icons/awesome_icon_white.png deleted file mode 100755 index 1b0de6e..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/awesome_icon_white.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/bar.png b/awesome/.config/awesome/themes/holo/icons/bar.png deleted file mode 100755 index 767885c..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/bar.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/bottom_bar.png b/awesome/.config/awesome/themes/holo/icons/bottom_bar.png deleted file mode 100755 index 076ad3b..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/bottom_bar.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/cal.png b/awesome/.config/awesome/themes/holo/icons/cal.png deleted file mode 100755 index 1b023ec..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/cal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/clock.png b/awesome/.config/awesome/themes/holo/icons/clock.png deleted file mode 100755 index 6b2c4e5..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/clock.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/cpu.png b/awesome/.config/awesome/themes/holo/icons/cpu.png deleted file mode 100755 index 1ce87eb..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/cpu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/dwindle.png b/awesome/.config/awesome/themes/holo/icons/dwindle.png deleted file mode 100755 index f68b484..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/dwindle.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/fairh.png b/awesome/.config/awesome/themes/holo/icons/fairh.png deleted file mode 100755 index c7e5e6d..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/fairh.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/fairv.png b/awesome/.config/awesome/themes/holo/icons/fairv.png deleted file mode 100755 index d416b9d..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/fairv.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/floating.png b/awesome/.config/awesome/themes/holo/icons/floating.png deleted file mode 100755 index b91cd07..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/floating.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/magnifier.png b/awesome/.config/awesome/themes/holo/icons/magnifier.png deleted file mode 100755 index e1f744e..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/magnifier.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/max.png b/awesome/.config/awesome/themes/holo/icons/max.png deleted file mode 100755 index 50d3994..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/max.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/mpd.png b/awesome/.config/awesome/themes/holo/icons/mpd.png deleted file mode 100755 index efa8ec3..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/mpd.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/net_down.png b/awesome/.config/awesome/themes/holo/icons/net_down.png deleted file mode 100755 index d5075a1..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/net_down.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/net_up.png b/awesome/.config/awesome/themes/holo/icons/net_up.png deleted file mode 100755 index 66dfb54..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/net_up.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/next.png b/awesome/.config/awesome/themes/holo/icons/next.png deleted file mode 100755 index 148ce90..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/next.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/pause.png b/awesome/.config/awesome/themes/holo/icons/pause.png deleted file mode 100755 index 9e9bc3f..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/pause.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/play.png b/awesome/.config/awesome/themes/holo/icons/play.png deleted file mode 100755 index 1949983..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/play.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/prev.png b/awesome/.config/awesome/themes/holo/icons/prev.png deleted file mode 100755 index d913bba..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/prev.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/spiral.png b/awesome/.config/awesome/themes/holo/icons/spiral.png deleted file mode 100755 index ebb7bb3..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/spiral.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/spr_bottom_right.png b/awesome/.config/awesome/themes/holo/icons/spr_bottom_right.png deleted file mode 100755 index d702f98..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/spr_bottom_right.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/spr_left.png b/awesome/.config/awesome/themes/holo/icons/spr_left.png deleted file mode 100755 index 44822ed..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/spr_left.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/spr_right.png b/awesome/.config/awesome/themes/holo/icons/spr_right.png deleted file mode 100755 index 5cca795..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/spr_right.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/spr_small.png b/awesome/.config/awesome/themes/holo/icons/spr_small.png deleted file mode 100755 index 16492a8..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/spr_small.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/spr_very_small.png b/awesome/.config/awesome/themes/holo/icons/spr_very_small.png deleted file mode 100755 index 8b9a227..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/spr_very_small.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/square_sel.png b/awesome/.config/awesome/themes/holo/icons/square_sel.png deleted file mode 100755 index 73fb845..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/square_sel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/square_unsel.png b/awesome/.config/awesome/themes/holo/icons/square_unsel.png deleted file mode 100755 index 07dd9f0..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/square_unsel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/stop.png b/awesome/.config/awesome/themes/holo/icons/stop.png deleted file mode 100755 index bfc819c..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/stop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/tile.png b/awesome/.config/awesome/themes/holo/icons/tile.png deleted file mode 100755 index e2e52bb..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/tile.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/tilebottom.png b/awesome/.config/awesome/themes/holo/icons/tilebottom.png deleted file mode 100755 index 439f528..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/tilebottom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/tileleft.png b/awesome/.config/awesome/themes/holo/icons/tileleft.png deleted file mode 100755 index 827e0d1..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/tileleft.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/icons/tiletop.png b/awesome/.config/awesome/themes/holo/icons/tiletop.png deleted file mode 100755 index 7139846..0000000 Binary files a/awesome/.config/awesome/themes/holo/icons/tiletop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/holo/theme.lua b/awesome/.config/awesome/themes/holo/theme.lua deleted file mode 100755 index d00a057..0000000 --- a/awesome/.config/awesome/themes/holo/theme.lua +++ /dev/null @@ -1,390 +0,0 @@ ---[[ - - Holo Awesome WM theme 3.0 - github.com/lcpz - ---]] - -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local string, os = string, os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.default_dir = require("awful.util").get_themes_dir() .. "default" -theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/holo/icons" -theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/holo/wall.png" -theme.font = "Roboto Bold 10" -theme.taglist_font = "Roboto Condensed Regular 8" -theme.fg_normal = "#FFFFFF" -theme.fg_focus = "#0099CC" -theme.bg_focus = "#303030" -theme.bg_normal = "#242424" -theme.fg_urgent = "#CC9393" -theme.bg_urgent = "#006B8E" -theme.border_width = dpi(3) -theme.border_normal = "#252525" -theme.border_focus = "#0099CC" -theme.taglist_fg_focus = "#FFFFFF" -theme.tasklist_bg_normal = "#222222" -theme.tasklist_fg_focus = "#4CB7DB" -theme.menu_height = dpi(20) -theme.menu_width = dpi(160) -theme.menu_icon_size = dpi(32) -theme.awesome_icon = theme.icon_dir .. "/awesome_icon_white.png" -theme.awesome_icon_launcher = theme.icon_dir .. "/awesome_icon.png" -theme.taglist_squares_sel = theme.icon_dir .. "/square_sel.png" -theme.taglist_squares_unsel = theme.icon_dir .. "/square_unsel.png" -theme.spr_small = theme.icon_dir .. "/spr_small.png" -theme.spr_very_small = theme.icon_dir .. "/spr_very_small.png" -theme.spr_right = theme.icon_dir .. "/spr_right.png" -theme.spr_bottom_right = theme.icon_dir .. "/spr_bottom_right.png" -theme.spr_left = theme.icon_dir .. "/spr_left.png" -theme.bar = theme.icon_dir .. "/bar.png" -theme.bottom_bar = theme.icon_dir .. "/bottom_bar.png" -theme.mpdl = theme.icon_dir .. "/mpd.png" -theme.mpd_on = theme.icon_dir .. "/mpd_on.png" -theme.prev = theme.icon_dir .. "/prev.png" -theme.nex = theme.icon_dir .. "/next.png" -theme.stop = theme.icon_dir .. "/stop.png" -theme.pause = theme.icon_dir .. "/pause.png" -theme.play = theme.icon_dir .. "/play.png" -theme.clock = theme.icon_dir .. "/clock.png" -theme.calendar = theme.icon_dir .. "/cal.png" -theme.cpu = theme.icon_dir .. "/cpu.png" -theme.net_up = theme.icon_dir .. "/net_up.png" -theme.net_down = theme.icon_dir .. "/net_down.png" -theme.layout_tile = theme.icon_dir .. "/tile.png" -theme.layout_tileleft = theme.icon_dir .. "/tileleft.png" -theme.layout_tilebottom = theme.icon_dir .. "/tilebottom.png" -theme.layout_tiletop = theme.icon_dir .. "/tiletop.png" -theme.layout_fairv = theme.icon_dir .. "/fairv.png" -theme.layout_fairh = theme.icon_dir .. "/fairh.png" -theme.layout_spiral = theme.icon_dir .. "/spiral.png" -theme.layout_dwindle = theme.icon_dir .. "/dwindle.png" -theme.layout_max = theme.icon_dir .. "/max.png" -theme.layout_fullscreen = theme.icon_dir .. "/fullscreen.png" -theme.layout_magnifier = theme.icon_dir .. "/magnifier.png" -theme.layout_floating = theme.icon_dir .. "/floating.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true -theme.useless_gap = dpi(4) -theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png" -theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png" -theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png" -theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png" -theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png" -theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png" -theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png" -theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png" -theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png" -theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png" -theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png" -theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png" - -theme.musicplr = string.format("%s -e ncmpcpp", awful.util.terminal) - -local markup = lain.util.markup -local blue = "#80CCE6" -local space3 = markup.font("Roboto 3", " ") - --- Clock -local mytextclock = wibox.widget.textclock(markup("#FFFFFF", space3 .. "%H:%M " .. markup.font("Roboto 4", " "))) -mytextclock.font = theme.font -local clock_icon = wibox.widget.imagebox(theme.clock) -local clockbg = wibox.container.background(mytextclock, theme.bg_focus, gears.shape.rectangle) -local clockwidget = wibox.container.margin(clockbg, dpi(0), dpi(3), dpi(5), dpi(5)) - --- Calendar -local mytextcalendar = wibox.widget.textclock(markup.fontfg(theme.font, "#FFFFFF", space3 .. "%d %b " .. markup.font("Roboto 5", " "))) -local calendar_icon = wibox.widget.imagebox(theme.calendar) -local calbg = wibox.container.background(mytextcalendar, theme.bg_focus, gears.shape.rectangle) -local calendarwidget = wibox.container.margin(calbg, dpi(0), dpi(0), dpi(5), dpi(5)) -theme.cal = lain.widget.cal({ - attach_to = { mytextclock, mytextcalendar }, - notification_preset = { - fg = "#FFFFFF", - bg = theme.bg_normal, - position = "bottom_right", - font = "Monospace 10" - } -}) - --- Mail IMAP check ---[[ commented because it needs to be set before use -theme.mail = lain.widget.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail_notification_preset.fg = "#FFFFFF" - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup.font(theme.font, markup(blue, mail) .. markup("#FFFFFF", count))) - end -}) ---]] - --- MPD -local mpd_icon = awful.widget.launcher({ image = theme.mpdl, command = theme.musicplr }) -local prev_icon = wibox.widget.imagebox(theme.prev) -local next_icon = wibox.widget.imagebox(theme.nex) -local stop_icon = wibox.widget.imagebox(theme.stop) -local pause_icon = wibox.widget.imagebox(theme.pause) -local play_pause_icon = wibox.widget.imagebox(theme.play) -theme.mpd = lain.widget.mpd({ - settings = function () - if mpd_now.state == "play" then - mpd_now.artist = mpd_now.artist:upper():gsub("&.-;", string.lower) - mpd_now.title = mpd_now.title:upper():gsub("&.-;", string.lower) - widget:set_markup(markup.font("Roboto 4", " ") - .. markup.font(theme.taglist_font, - " " .. mpd_now.artist - .. " - " .. - mpd_now.title .. " ") .. markup.font("Roboto 5", " ")) - play_pause_icon:set_image(theme.pause) - elseif mpd_now.state == "pause" then - widget:set_markup(markup.font("Roboto 4", " ") .. - markup.font(theme.taglist_font, " MPD PAUSED ") .. - markup.font("Roboto 5", " ")) - play_pause_icon:set_image(theme.play) - else - widget:set_markup("") - play_pause_icon:set_image(theme.play) - end - end -}) -local musicbg = wibox.container.background(theme.mpd.widget, theme.bg_focus, gears.shape.rectangle) -local musicwidget = wibox.container.margin(musicbg, dpi(0), dpi(0), dpi(5), dpi(5)) - -musicwidget:buttons(my_table.join(awful.button({ }, 1, -function () awful.spawn(theme.musicplr) end))) -prev_icon:buttons(my_table.join(awful.button({}, 1, -function () - os.execute("mpc prev") - theme.mpd.update() -end))) -next_icon:buttons(my_table.join(awful.button({}, 1, -function () - os.execute("mpc next") - theme.mpd.update() -end))) -stop_icon:buttons(my_table.join(awful.button({}, 1, -function () - play_pause_icon:set_image(theme.play) - os.execute("mpc stop") - theme.mpd.update() -end))) -play_pause_icon:buttons(my_table.join(awful.button({}, 1, -function () - os.execute("mpc toggle") - theme.mpd.update() -end))) - --- Battery -local bat = lain.widget.bat({ - settings = function() - bat_header = " Bat " - bat_p = bat_now.perc .. " " - if bat_now.ac_status == 1 then - bat_p = bat_p .. "Plugged " - end - widget:set_markup(markup.font(theme.font, markup(blue, bat_header) .. bat_p)) - end -}) - --- / fs ---[[ commented because it needs Gio/Glib >= 2.54 -theme.fs = lain.widget.fs({ - notification_preset = { bg = theme.bg_normal, font = "Monospace 9" }, -}) ---]] - --- ALSA volume bar -theme.volume = lain.widget.alsabar({ - notification_preset = { font = "Monospace 9"}, - --togglechannel = "IEC958,3", - width = dpi(80), height = dpi(10), border_width = dpi(0), - colors = { - background = "#383838", - unmute = "#80CCE6", - mute = "#FF9F9F" - }, -}) -theme.volume.bar.paddings = dpi(0) -theme.volume.bar.margins = dpi(5) -local volumewidget = wibox.container.background(theme.volume.bar, theme.bg_focus, gears.shape.rectangle) -volumewidget = wibox.container.margin(volumewidget, dpi(0), dpi(0), dpi(5), dpi(5)) - --- CPU -local cpu_icon = wibox.widget.imagebox(theme.cpu) -local cpu = lain.widget.cpu({ - settings = function() - widget:set_markup(space3 .. markup.font(theme.font, "CPU " .. cpu_now.usage - .. "% ") .. markup.font("Roboto 5", " ")) - end -}) -local cpubg = wibox.container.background(cpu.widget, theme.bg_focus, gears.shape.rectangle) -local cpuwidget = wibox.container.margin(cpubg, dpi(0), dpi(0), dpi(5), dpi(5)) - --- Net -local netdown_icon = wibox.widget.imagebox(theme.net_down) -local netup_icon = wibox.widget.imagebox(theme.net_up) -local net = lain.widget.net({ - settings = function() - widget:set_markup(markup.font("Roboto 1", " ") .. markup.font(theme.font, net_now.received .. " - " - .. net_now.sent) .. markup.font("Roboto 2", " ")) - end -}) -local netbg = wibox.container.background(net.widget, theme.bg_focus, gears.shape.rectangle) -local networkwidget = wibox.container.margin(netbg, dpi(0), dpi(0), dpi(5), dpi(5)) - --- Weather -theme.weather = lain.widget.weather({ - city_id = 2643743, -- placeholder (London) - notification_preset = { font = "Monospace 9", position = "bottom_right" }, -}) - --- Launcher -local mylauncher = awful.widget.button({ image = theme.awesome_icon_launcher }) -mylauncher:connect_signal("button::press", function() awful.util.mymainmenu:toggle() end) - --- Separators -local first = wibox.widget.textbox(' ') -local spr_small = wibox.widget.imagebox(theme.spr_small) -local spr_very_small = wibox.widget.imagebox(theme.spr_very_small) -local spr_right = wibox.widget.imagebox(theme.spr_right) -local spr_bottom_right = wibox.widget.imagebox(theme.spr_bottom_right) -local spr_left = wibox.widget.imagebox(theme.spr_left) -local bar = wibox.widget.imagebox(theme.bar) -local bottom_bar = wibox.widget.imagebox(theme.bottom_bar) - -local barcolor = gears.color({ - type = "linear", - from = { dpi(32), 0 }, - to = { dpi(32), dpi(32) }, - stops = { {0, theme.bg_focus}, {0.25, "#505050"}, {1, theme.bg_focus} } -}) - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - -- Create an imagebox widget which will contains an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(my_table.join( - awful.button({}, 1, function () awful.layout.inc( 1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function () awful.layout.inc(-1) end), - awful.button({}, 4, function () awful.layout.inc( 1) end), - awful.button({}, 5, function () awful.layout.inc(-1) end))) - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons, { bg_focus = barcolor }) - - mytaglistcont = wibox.container.background(s.mytaglist, theme.bg_focus, gears.shape.rectangle) - s.mytag = wibox.container.margin(mytaglistcont, dpi(0), dpi(0), dpi(5), dpi(5)) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons, { bg_focus = theme.bg_focus, shape = gears.shape.rectangle, shape_border_width = 5, shape_border_color = theme.tasklist_bg_normal, align = "center" }) - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(32) }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - first, - s.mytag, - spr_small, - s.mylayoutbox, - spr_small, - s.mypromptbox, - }, - nil, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - --theme.mail.widget, - --bat.widget, - spr_right, - musicwidget, - bar, - prev_icon, - next_icon, - stop_icon, - play_pause_icon, - bar, - mpd_icon, - bar, - spr_very_small, - volumewidget, - spr_left, - }, - } - - -- Create the bottom wibox - s.mybottomwibox = awful.wibar({ position = "bottom", screen = s, border_width = dpi(0), height = dpi(32) }) - s.borderwibox = awful.wibar({ position = "bottom", screen = s, height = dpi(1), bg = theme.fg_focus, x = dpi(0), y = dpi(33)}) - - -- Add widgets to the bottom wibox - s.mybottomwibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - mylauncher, - }, - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - spr_bottom_right, - netdown_icon, - networkwidget, - netup_icon, - bottom_bar, - cpu_icon, - cpuwidget, - bottom_bar, - calendar_icon, - calendarwidget, - bottom_bar, - clock_icon, - clockwidget, - }, - } -end - -return theme diff --git a/awesome/.config/awesome/themes/holo/wall.png b/awesome/.config/awesome/themes/holo/wall.png deleted file mode 100755 index 7ec8009..0000000 Binary files a/awesome/.config/awesome/themes/holo/wall.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/cpu-widget/README.md b/awesome/.config/awesome/themes/multicolor/cpu-widget/README.md deleted file mode 100755 index b323f9b..0000000 --- a/awesome/.config/awesome/themes/multicolor/cpu-widget/README.md +++ /dev/null @@ -1,71 +0,0 @@ -# CPU widget - -[![GitHub issues by-label](https://img.shields.io/github/issues-raw/streetturtle/awesome-wm-widgets/cpu)](https://github.com/streetturtle/awesome-wm-widgets/labels/cpu) - -This widget shows the average CPU load among all cores of the machine: - -![screenshot](./cpu.gif) - -## How it works - -To measure the load I took Paul Colby's bash [script](http://colby.id.au/calculating-cpu-usage-from-proc-stat/) and rewrote it in Lua, which was quite simple. -So awesome simply reads the first line of /proc/stat: - -```bash -$ cat /proc/stat | grep '^cpu ' -cpu 197294 718 50102 2002182 3844 0 2724 0 0 0 -``` - -and calculates the percentage. - -## Customization - -It is possible to customize widget by providing a table with all or some of the following config parameters: - -| Name | Default | Description | -|---|---|---| -| `width` | 50 | Width of the widget | -| `step_width` | 2 | Width of the step | -| `step_spacing` | 1 | Space size between steps | -| `color` | `beautiful.fg_normal` | Color of the graph | -| `enable_kill_button` | `false` | Show button which kills the process | -| `process_info_max_length` | `-1` | Truncate the process information. Some processes may have a very long list of parameters which won't fit in the screen, this options allows to truncate it to the given length. | -| `timeout` | 1 | How often in seconds the widget refreshes | - -### Example - -```lua -cpu_widget({ - width = 70, - step_width = 2, - step_spacing = 0, - color = '#434c5e' -}) -``` - -The config above results in the following widget: - -![custom](./custom.png) - -## Installation - -Clone/download repo and use widget in **rc.lua**: - -```lua -local cpu_widget = require("awesome-wm-widgets.cpu-widget.cpu-widget") -... -s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - ... - -- default - cpu_widget(), - -- or custom - cpu_widget({ - width = 70, - step_width = 2, - step_spacing = 0, - color = '#434c5e' - }) - ... -``` diff --git a/awesome/.config/awesome/themes/multicolor/cpu-widget/cpu-png b/awesome/.config/awesome/themes/multicolor/cpu-widget/cpu-png deleted file mode 100755 index 96ba29f..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/cpu-widget/cpu-png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/cpu-widget/cpu-widget.lua b/awesome/.config/awesome/themes/multicolor/cpu-widget/cpu-widget.lua deleted file mode 100755 index 317ef0a..0000000 --- a/awesome/.config/awesome/themes/multicolor/cpu-widget/cpu-widget.lua +++ /dev/null @@ -1,290 +0,0 @@ -------------------------------------------------- --- CPU Widget for Awesome Window Manager --- Shows the current CPU utilization --- More details could be found here: --- https://github.com/streetturtle/awesome-wm-widgets/tree/master/cpu-widget - --- @author Pavel Makhov --- @copyright 2020 Pavel Makhov -------------------------------------------------- - -local awful = require("awful") -local watch = require("awful.widget.watch") -local wibox = require("wibox") -local beautiful = require("beautiful") -local gears = require("gears") - -local HOME_DIR = os.getenv("HOME") -local WIDGET_DIR = HOME_DIR .. '/.config/awesome/awesome-wm-widgets/cpu-widget' - -local widget = {} -local cpu_rows = { - spacing = 4, - layout = wibox.layout.fixed.vertical, -} -local is_update = true -local process_rows = { - layout = wibox.layout.fixed.vertical, -} - --- Splits the string by separator --- @return table with separated substrings -local function split(string_to_split, separator) - if separator == nil then separator = "%s" end - local t = {} - - for str in string.gmatch(string_to_split, "([^".. separator .."]+)") do - table.insert(t, str) - end - - return t -end - --- Checks if a string starts with a another string -local function starts_with(str, start) - return str:sub(1, #start) == start -end - - -local function create_textbox(args) - return wibox.widget{ - text = args.text, - align = args.align or 'left', - markup = args.markup, - forced_width = args.forced_width or 40, - widget = wibox.widget.textbox - } -end - -local function create_process_header(params) - local res = wibox.widget{ - create_textbox{markup = 'PID'}, - create_textbox{markup = 'Name'}, - { - create_textbox{markup = '%CPU'}, - create_textbox{markup = '%MEM'}, - params.with_action_column and create_textbox{forced_width = 20} or nil, - layout = wibox.layout.align.horizontal - }, - layout = wibox.layout.ratio.horizontal - } - res:ajust_ratio(2, 0.2, 0.47, 0.33) - - return res -end - -local function create_kill_process_button() - return wibox.widget{ - { - id = "icon", - image = WIDGET_DIR .. '/window-close-symbolic.svg', - resize = false, - opacity = 0.1, - widget = wibox.widget.imagebox - }, - widget = wibox.container.background - } -end - -local function worker(args) - - local args = args or {} - - local width = args.width or 50 - local step_width = args.step_width or 2 - local step_spacing = args.step_spacing or 1 - local color = args.color or beautiful.fg_normal - local enable_kill_button = args.enable_kill_button or false - local process_info_max_length = args.process_info_max_length or -1 - local timeout = args.timeout or 1 - - local cpugraph_widget = wibox.widget { - max_value = 100, - background_color = "#00000000", - forced_width = width, - step_width = step_width, - step_spacing = step_spacing, - widget = wibox.widget.graph, - color = "linear:0,0:0,20:0,#FF0000:0.3,#FFFF00:0.6," .. color - } - - local popup = awful.popup{ - ontop = true, - visible = false, - shape = gears.shape.rounded_rect, - border_width = 1, - border_color = beautiful.bg_normal, - maximum_width = 300, - offset = { y = 5 }, - widget = {} - } - - -- Do not update process rows when mouse cursor is over the widget - popup:connect_signal("mouse::enter", function(c) is_update = false end) - popup:connect_signal("mouse::leave", function(c) is_update = true end) - - cpugraph_widget:buttons( - awful.util.table.join( - awful.button({}, 1, function() - if popup.visible then - popup.visible = not popup.visible - else - popup:move_next_to(mouse.current_widget_geometry) - end - end) - ) - ) - - --- By default graph widget goes from left to right, so we mirror it and push up a bit - local cpu_widget = wibox.container.margin(wibox.container.mirror(cpugraph_widget, { horizontal = true }), 0, 0, 0, 2) - - local cpus = {} - watch([[bash -c "grep '^cpu.' /proc/stat; ps -eo '%p|%c|%C|' -o "%mem" -o '|%a' --sort=-%cpu | head -11 | tail -n +2"]], timeout, - function(widget, stdout) - local i = 1 - local j = 1 - for line in stdout:gmatch("[^\r\n]+") do - if starts_with(line, 'cpu') then - - if cpus[i] == nil then cpus[i] = {} end - - local name, user, nice, system, idle, iowait, irq, softirq, steal, guest, guest_nice = - line:match('(%w+)%s+(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)') - - local total = user + nice + system + idle + iowait + irq + softirq + steal - - local diff_idle = idle - tonumber(cpus[i]['idle_prev'] == nil and 0 or cpus[i]['idle_prev']) - local diff_total = total - tonumber(cpus[i]['total_prev'] == nil and 0 or cpus[i]['total_prev']) - local diff_usage = (1000 * (diff_total - diff_idle) / diff_total + 5) / 10 - - cpus[i]['total_prev'] = total - cpus[i]['idle_prev'] = idle - - if i == 1 then - widget:add_value(diff_usage) - end - - local row = wibox.widget - { - create_textbox{text = name}, - create_textbox{text = math.floor(diff_usage) .. '%'}, - { - max_value = 100, - value = diff_usage, - forced_height = 20, - forced_width = 150, - paddings = 1, - margins = 4, - border_width = 1, - border_color = beautiful.bg_focus, - background_color = beautiful.bg_normal, - bar_border_width = 1, - bar_border_color = beautiful.bg_focus, - color = "linear:150,0:0,0:0,#D08770:0.3,#BF616A:0.6," .. beautiful.fg_normal, - widget = wibox.widget.progressbar, - - }, - layout = wibox.layout.ratio.horizontal - } - row:ajust_ratio(2, 0.15, 0.15, 0.7) - cpu_rows[i] = row - i = i + 1 - else - if is_update == true then - - local columns = split(line, '|') - - local pid = columns[1] - local comm = columns[2] - local cpu = columns[3] - local mem = columns[4] - local cmd = columns[5] - - local kill_proccess_button = enable_kill_button and create_kill_process_button() or nil - - local pid_name_rest = wibox.widget{ - create_textbox{text = pid}, - create_textbox{text = comm}, - { - create_textbox{text = cpu, align = 'center'}, - create_textbox{text = mem, align = 'center'}, - kill_proccess_button, - layout = wibox.layout.fixed.horizontal - }, - layout = wibox.layout.ratio.horizontal - } - pid_name_rest:ajust_ratio(2, 0.2, 0.47, 0.33) - - local row = wibox.widget { - { - pid_name_rest, - top = 4, - bottom = 4, - widget = wibox.container.margin - }, - widget = wibox.container.background - } - - row:connect_signal("mouse::enter", function(c) c:set_bg(beautiful.bg_focus) end) - row:connect_signal("mouse::leave", function(c) c:set_bg(beautiful.bg_normal) end) - - if enable_kill_button then - row:connect_signal("mouse::enter", function(c) kill_proccess_button.icon.opacity = 1 end) - row:connect_signal("mouse::leave", function(c) kill_proccess_button.icon.opacity = 0.1 end) - - kill_proccess_button:buttons( - awful.util.table.join( awful.button({}, 1, function() - row:set_bg('#ff0000') - awful.spawn.with_shell('kill -9 ' .. pid) - end) ) ) - end - - awful.tooltip { - objects = { row }, - mode = 'outside', - preferred_positions = {'bottom'}, - timer_function = function() - local text = cmd - if process_info_max_length > 0 and text:len() > process_info_max_length then - text = text:sub(0, process_info_max_length - 3) .. '...' - end - - return text - :gsub('%s%-', '\n\t-') -- put arguments on a new line - :gsub(':/', '\n\t\t:/') -- java classpath uses : to separate jars - end, - } - - process_rows[j] = row - - j = j + 1 - end - - end - end - popup:setup { - { - cpu_rows, - { - orientation = 'horizontal', - forced_height = 15, - color = beautiful.bg_focus, - widget = wibox.widget.separator - }, - create_process_header{with_action_column = enable_kill_button}, - process_rows, - layout = wibox.layout.fixed.vertical, - }, - margins = 8, - widget = wibox.container.margin - } - end, - cpugraph_widget - ) - - return cpu_widget -end - -return setmetatable(widget, { __call = function(_, ...) - return worker(...) -end }) diff --git a/awesome/.config/awesome/themes/multicolor/cpu-widget/cpu.gif b/awesome/.config/awesome/themes/multicolor/cpu-widget/cpu.gif deleted file mode 100755 index cb97262..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/cpu-widget/cpu.gif and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/cpu-widget/custom.png b/awesome/.config/awesome/themes/multicolor/cpu-widget/custom.png deleted file mode 100755 index be275e4..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/cpu-widget/custom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/cpu-widget/window-close-symbolic.svg b/awesome/.config/awesome/themes/multicolor/cpu-widget/window-close-symbolic.svg deleted file mode 100755 index 46ff888..0000000 --- a/awesome/.config/awesome/themes/multicolor/cpu-widget/window-close-symbolic.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - Gnome Symbolic Icon Theme - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/awesome/.config/awesome/themes/multicolor/icons/ac.png b/awesome/.config/awesome/themes/multicolor/icons/ac.png deleted file mode 100755 index 272b832..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/ac.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/bat.png b/awesome/.config/awesome/themes/multicolor/icons/bat.png deleted file mode 100755 index bd63927..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/bat.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/clock.png b/awesome/.config/awesome/themes/multicolor/icons/clock.png deleted file mode 100755 index 22aef71..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/clock.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/cpu.png b/awesome/.config/awesome/themes/multicolor/icons/cpu.png deleted file mode 100755 index e3794ca..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/cpu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/dish.png b/awesome/.config/awesome/themes/multicolor/icons/dish.png deleted file mode 100755 index c71499b..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/dish.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/dwindle.png b/awesome/.config/awesome/themes/multicolor/icons/dwindle.png deleted file mode 100755 index 94d8382..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/dwindle.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/fairh.png b/awesome/.config/awesome/themes/multicolor/icons/fairh.png deleted file mode 100755 index 4468efc..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/fairh.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/fairv.png b/awesome/.config/awesome/themes/multicolor/icons/fairv.png deleted file mode 100755 index 7c8728e..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/fairv.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/floating.png b/awesome/.config/awesome/themes/multicolor/icons/floating.png deleted file mode 100755 index 7593a2a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/floating.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/fs.png b/awesome/.config/awesome/themes/multicolor/icons/fs.png deleted file mode 100755 index 1c1b13e..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/fs.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/fullscreen.png b/awesome/.config/awesome/themes/multicolor/icons/fullscreen.png deleted file mode 100755 index f63a69c..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/fullscreen.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/magnifier.png b/awesome/.config/awesome/themes/multicolor/icons/magnifier.png deleted file mode 100755 index 8819554..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/magnifier.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/mail.png b/awesome/.config/awesome/themes/multicolor/icons/mail.png deleted file mode 100755 index 25021f5..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/mail.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/max.png b/awesome/.config/awesome/themes/multicolor/icons/max.png deleted file mode 100755 index 4b6a8c3..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/max.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/mem.png b/awesome/.config/awesome/themes/multicolor/icons/mem.png deleted file mode 100755 index d04ee11..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/mem.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/net_down.png b/awesome/.config/awesome/themes/multicolor/icons/net_down.png deleted file mode 100755 index 09433b1..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/net_down.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/net_up.png b/awesome/.config/awesome/themes/multicolor/icons/net_up.png deleted file mode 100755 index 395d014..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/net_up.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/note.png b/awesome/.config/awesome/themes/multicolor/icons/note.png deleted file mode 100755 index 2f41eb3..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/note.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/note_on.png b/awesome/.config/awesome/themes/multicolor/icons/note_on.png deleted file mode 100755 index 264d2c8..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/note_on.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/spiral.png b/awesome/.config/awesome/themes/multicolor/icons/spiral.png deleted file mode 100755 index 6a1ebf1..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/spiral.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/spkr.png b/awesome/.config/awesome/themes/multicolor/icons/spkr.png deleted file mode 100755 index 80c20b0..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/spkr.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/square_a.png b/awesome/.config/awesome/themes/multicolor/icons/square_a.png deleted file mode 100755 index 1774d95..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/square_a.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/square_b.png b/awesome/.config/awesome/themes/multicolor/icons/square_b.png deleted file mode 100755 index b47e9f3..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/square_b.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/submenu.png b/awesome/.config/awesome/themes/multicolor/icons/submenu.png deleted file mode 100755 index 7c81cab..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/submenu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/temp.png b/awesome/.config/awesome/themes/multicolor/icons/temp.png deleted file mode 100755 index 6c8f8bd..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/temp.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/tile.png b/awesome/.config/awesome/themes/multicolor/icons/tile.png deleted file mode 100755 index 64103d9..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/tile.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/tilebottom.png b/awesome/.config/awesome/themes/multicolor/icons/tilebottom.png deleted file mode 100755 index 9363636..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/tilebottom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/tileleft.png b/awesome/.config/awesome/themes/multicolor/icons/tileleft.png deleted file mode 100755 index 9331898..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/tileleft.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/tiletop.png b/awesome/.config/awesome/themes/multicolor/icons/tiletop.png deleted file mode 100755 index 1cef886..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/tiletop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/close_focus.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/close_focus.png deleted file mode 100755 index cd297db..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/close_focus.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/close_normal.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/close_normal.png deleted file mode 100755 index 5448ed8..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/close_normal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_focus_active.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_focus_active.png deleted file mode 100755 index ae5a8e2..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_focus_inactive.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_focus_inactive.png deleted file mode 100755 index c54eb0c..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_normal_active.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_normal_active.png deleted file mode 100755 index 62342d1..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_normal_inactive.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_normal_inactive.png deleted file mode 100755 index e2bbdfa..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/floating_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_focus_active.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_focus_active.png deleted file mode 100755 index 957298b..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_focus_inactive.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_focus_inactive.png deleted file mode 100755 index 1187229..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_normal_active.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_normal_active.png deleted file mode 100755 index a705f81..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_normal_inactive.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_normal_inactive.png deleted file mode 100755 index 4c1ab1f..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/maximized_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/minimize_focus.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/minimize_focus.png deleted file mode 100755 index bbe8cff..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/minimize_focus.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/minimize_normal.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/minimize_normal.png deleted file mode 100755 index 36621d0..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/minimize_normal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_focus_active.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_focus_active.png deleted file mode 100755 index 25a3080..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_focus_inactive.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_focus_inactive.png deleted file mode 100755 index d3c077a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_normal_active.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_normal_active.png deleted file mode 100755 index 117a203..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_normal_inactive.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_normal_inactive.png deleted file mode 100755 index d3a10c8..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/ontop_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_focus_active.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_focus_active.png deleted file mode 100755 index 147ce6a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_focus_inactive.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_focus_inactive.png deleted file mode 100755 index 396628a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_normal_active.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_normal_active.png deleted file mode 100755 index bdb5595..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_normal_inactive.png b/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_normal_inactive.png deleted file mode 100755 index a96b9b1..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons/titlebar/sticky_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/ac.png b/awesome/.config/awesome/themes/multicolor/icons_/ac.png deleted file mode 100644 index 272b832..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/ac.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/bat.png b/awesome/.config/awesome/themes/multicolor/icons_/bat.png deleted file mode 100644 index bd63927..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/bat.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/clock.png b/awesome/.config/awesome/themes/multicolor/icons_/clock.png deleted file mode 100644 index 22aef71..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/clock.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/cpu.png b/awesome/.config/awesome/themes/multicolor/icons_/cpu.png deleted file mode 100644 index e3794ca..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/cpu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/dish.png b/awesome/.config/awesome/themes/multicolor/icons_/dish.png deleted file mode 100644 index c71499b..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/dish.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/dwindle.png b/awesome/.config/awesome/themes/multicolor/icons_/dwindle.png deleted file mode 100644 index 94d8382..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/dwindle.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/fairh.png b/awesome/.config/awesome/themes/multicolor/icons_/fairh.png deleted file mode 100644 index 4468efc..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/fairh.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/fairv.png b/awesome/.config/awesome/themes/multicolor/icons_/fairv.png deleted file mode 100644 index 7c8728e..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/fairv.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/floating.png b/awesome/.config/awesome/themes/multicolor/icons_/floating.png deleted file mode 100644 index 7593a2a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/floating.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/fs.png b/awesome/.config/awesome/themes/multicolor/icons_/fs.png deleted file mode 100644 index 1c1b13e..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/fs.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/fullscreen.png b/awesome/.config/awesome/themes/multicolor/icons_/fullscreen.png deleted file mode 100644 index f63a69c..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/fullscreen.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/magnifier.png b/awesome/.config/awesome/themes/multicolor/icons_/magnifier.png deleted file mode 100644 index 8819554..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/magnifier.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/mail.png b/awesome/.config/awesome/themes/multicolor/icons_/mail.png deleted file mode 100644 index 25021f5..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/mail.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/max.png b/awesome/.config/awesome/themes/multicolor/icons_/max.png deleted file mode 100644 index 4b6a8c3..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/max.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/mem.png b/awesome/.config/awesome/themes/multicolor/icons_/mem.png deleted file mode 100644 index d04ee11..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/mem.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/net_down.png b/awesome/.config/awesome/themes/multicolor/icons_/net_down.png deleted file mode 100644 index 09433b1..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/net_down.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/net_up.png b/awesome/.config/awesome/themes/multicolor/icons_/net_up.png deleted file mode 100644 index 395d014..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/net_up.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/note.png b/awesome/.config/awesome/themes/multicolor/icons_/note.png deleted file mode 100644 index 2f41eb3..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/note.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/note_on.png b/awesome/.config/awesome/themes/multicolor/icons_/note_on.png deleted file mode 100755 index 264d2c8..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/note_on.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/spiral.png b/awesome/.config/awesome/themes/multicolor/icons_/spiral.png deleted file mode 100644 index 6a1ebf1..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/spiral.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/spkr.png b/awesome/.config/awesome/themes/multicolor/icons_/spkr.png deleted file mode 100644 index 80c20b0..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/spkr.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/square_a.png b/awesome/.config/awesome/themes/multicolor/icons_/square_a.png deleted file mode 100755 index 1774d95..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/square_a.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/square_b.png b/awesome/.config/awesome/themes/multicolor/icons_/square_b.png deleted file mode 100755 index b47e9f3..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/square_b.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/submenu.png b/awesome/.config/awesome/themes/multicolor/icons_/submenu.png deleted file mode 100644 index 7c81cab..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/submenu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/temp.png b/awesome/.config/awesome/themes/multicolor/icons_/temp.png deleted file mode 100755 index 6c8f8bd..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/temp.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/tile.png b/awesome/.config/awesome/themes/multicolor/icons_/tile.png deleted file mode 100644 index 64103d9..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/tile.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/tilebottom.png b/awesome/.config/awesome/themes/multicolor/icons_/tilebottom.png deleted file mode 100644 index 9363636..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/tilebottom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/tileleft.png b/awesome/.config/awesome/themes/multicolor/icons_/tileleft.png deleted file mode 100644 index 9331898..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/tileleft.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/tiletop.png b/awesome/.config/awesome/themes/multicolor/icons_/tiletop.png deleted file mode 100644 index 1cef886..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/tiletop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/close_focus.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/close_focus.png deleted file mode 100644 index cd297db..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/close_focus.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/close_normal.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/close_normal.png deleted file mode 100644 index 5448ed8..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/close_normal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_focus_active.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_focus_active.png deleted file mode 100644 index ae5a8e2..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_focus_inactive.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_focus_inactive.png deleted file mode 100644 index c54eb0c..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_normal_active.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_normal_active.png deleted file mode 100644 index 62342d1..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_normal_inactive.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_normal_inactive.png deleted file mode 100644 index e2bbdfa..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/floating_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_focus_active.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_focus_active.png deleted file mode 100644 index 957298b..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_focus_inactive.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_focus_inactive.png deleted file mode 100644 index 1187229..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_normal_active.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_normal_active.png deleted file mode 100644 index a705f81..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_normal_inactive.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_normal_inactive.png deleted file mode 100644 index 4c1ab1f..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/maximized_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/minimize_focus.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/minimize_focus.png deleted file mode 100644 index bbe8cff..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/minimize_focus.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/minimize_normal.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/minimize_normal.png deleted file mode 100644 index 36621d0..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/minimize_normal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_focus_active.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_focus_active.png deleted file mode 100644 index 25a3080..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_focus_inactive.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_focus_inactive.png deleted file mode 100644 index d3c077a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_normal_active.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_normal_active.png deleted file mode 100644 index 117a203..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_normal_inactive.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_normal_inactive.png deleted file mode 100644 index d3a10c8..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/ontop_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_focus_active.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_focus_active.png deleted file mode 100644 index 147ce6a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_focus_inactive.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_focus_inactive.png deleted file mode 100644 index 396628a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_normal_active.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_normal_active.png deleted file mode 100644 index bdb5595..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_normal_inactive.png b/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_normal_inactive.png deleted file mode 100644 index a96b9b1..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/icons_/titlebar/sticky_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/theme.lua b/awesome/.config/awesome/themes/multicolor/theme.lua deleted file mode 100755 index e61f517..0000000 --- a/awesome/.config/awesome/themes/multicolor/theme.lua +++ /dev/null @@ -1,356 +0,0 @@ ---[[ - - Multicolor Awesome WM theme 2.0 - github.com/lcpz - ---]] -local cpu_widget = require("awesome-wm-widgets.cpu-widget.cpu-widget") -local weather_widget = require("awesome-wm-widgets.weather-widget.weather") -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local os = os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/multicolor" ---theme.wallpaper = theme.confdir .. "/wall.jpg" -theme.font = "Terminus 12" -theme.menu_bg_normal = "#000000" -theme.menu_bg_focus = "#000000" -theme.bg_normal = "#000000" -theme.bg_focus = "#000000" -theme.bg_urgent = "#000000" -theme.fg_normal = "#aaaaaa" -theme.fg_focus = "#a40ddb" -theme.fg_urgent = "#af1d18" -theme.fg_minimize = "#ffffff" -theme.border_width = dpi(1) -theme.border_normal = "#1c2022" -theme.border_focus = "#606060" -theme.border_marked = "#3ca4d8" -theme.menu_border_width = 0 -theme.menu_width = dpi(130) -theme.menu_submenu_icon = theme.confdir .. "/icons/submenu.png" -theme.menu_fg_normal = "#aaaaaa" -theme.menu_fg_focus = "#ff8c00" -theme.menu_bg_normal = "#050505dd" -theme.menu_bg_focus = "#050505dd" -theme.widget_temp = theme.confdir .. "/icons/temp.png" -theme.widget_uptime = theme.confdir .. "/icons/ac.png" -theme.widget_cpu = theme.confdir .. "/icons/cpu.png" -theme.widget_weather = theme.confdir .. "/icons/dish.png" -theme.widget_fs = theme.confdir .. "/icons/fs.png" -theme.widget_mem = theme.confdir .. "/icons/mem.png" -theme.widget_note = theme.confdir .. "/icons/note.png" -theme.widget_note_on = theme.confdir .. "/icons/note_on.png" -theme.widget_netdown = theme.confdir .. "/icons/net_down.png" -theme.widget_netup = theme.confdir .. "/icons/net_up.png" -theme.widget_mail = theme.confdir .. "/icons/mail.png" -theme.widget_batt = theme.confdir .. "/icons/bat.png" -theme.widget_clock = theme.confdir .. "/icons/clock.png" -theme.widget_vol = theme.confdir .. "/icons/spkr.png" -theme.taglist_squares_sel = theme.confdir .. "/icons/square_a.png" -theme.taglist_squares_unsel = theme.confdir .. "/icons/square_b.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true -theme.useless_gap = 5 -theme.layout_tile = theme.confdir .. "/icons/tile.png" -theme.layout_tilegaps = theme.confdir .. "/icons/tilegaps.png" -theme.layout_tileleft = theme.confdir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.confdir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.confdir .. "/icons/tiletop.png" -theme.layout_fairv = theme.confdir .. "/icons/fairv.png" -theme.layout_fairh = theme.confdir .. "/icons/fairh.png" -theme.layout_spiral = theme.confdir .. "/icons/spiral.png" -theme.layout_dwindle = theme.confdir .. "/icons/dwindle.png" -theme.layout_max = theme.confdir .. "/icons/max.png" -theme.layout_fullscreen = theme.confdir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.confdir .. "/icons/magnifier.png" -theme.layout_floating = theme.confdir .. "/icons/floating.png" -theme.titlebar_close_button_normal = theme.confdir .. "/icons/titlebar/close_normal.png" -theme.titlebar_close_button_focus = theme.confdir .. "/icons/titlebar/close_focus.png" -theme.titlebar_minimize_button_normal = theme.confdir .. "/icons/titlebar/minimize_normal.png" -theme.titlebar_minimize_button_focus = theme.confdir .. "/icons/titlebar/minimize_focus.png" -theme.titlebar_ontop_button_normal_inactive = theme.confdir .. "/icons/titlebar/ontop_normal_inactive.png" -theme.titlebar_ontop_button_focus_inactive = theme.confdir .. "/icons/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_active = theme.confdir .. "/icons/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_active = theme.confdir .. "/icons/titlebar/ontop_focus_active.png" -theme.titlebar_sticky_button_normal_inactive = theme.confdir .. "/icons/titlebar/sticky_normal_inactive.png" -theme.titlebar_sticky_button_focus_inactive = theme.confdir .. "/icons/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_active = theme.confdir .. "/icons/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_active = theme.confdir .. "/icons/titlebar/sticky_focus_active.png" -theme.titlebar_floating_button_normal_inactive = theme.confdir .. "/icons/titlebar/floating_normal_inactive.png" -theme.titlebar_floating_button_focus_inactive = theme.confdir .. "/icons/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_active = theme.confdir .. "/icons/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_active = theme.confdir .. "/icons/titlebar/floating_focus_active.png" -theme.titlebar_maximized_button_normal_inactive = theme.confdir .. "/icons/titlebar/maximized_normal_inactive.png" -theme.titlebar_maximized_button_focus_inactive = theme.confdir .. "/icons/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_active = theme.confdir .. "/icons/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_active = theme.confdir .. "/icons/titlebar/maximized_focus_active.png" - -local markup = lain.util.markup - --- Textclock -os.setlocale(os.getenv("LANG")) -- to localize the clock -local clockicon = wibox.widget.imagebox(theme.widget_clock) -local mytextclock = wibox.widget.textclock(markup("#7788af", "%A %d %B ") .. markup("#ab7367", ">") .. markup("#de5e1e", " %H:%M ")) -mytextclock.font = theme.font - --- Calendar -theme.cal = lain.widget.cal({ - attach_to = { mytextclock }, - notification_preset = { - font = "Terminus 10", - fg = theme.fg_normal, - bg = theme.bg_normal - } -}) - --- Weather -local weathericon = wibox.widget.imagebox(theme.widget_weather) -theme.weather = lain.widget.weather({ - city_id = 1105777, - notification_preset = { font = "Terminus 10", fg = theme.fg_normal }, - weather_na_markup = markup.fontfg(theme.font, "#eca4c4", "N/A "), - settings = function() - descr = weather_now["weather"][1]["description"]:lower() - units = math.floor(weather_now["main"]["temp"]) - widget:set_markup(markup.fontfg(theme.font, "#eca4c4", descr .. " @ " .. units .. "°C ")) - end -}) - --- / fs ---[[ commented because it needs Gio/Glib >= 2.54 -local fsicon = wibox.widget.imagebox(theme.widget_fs) -theme.fs = lain.widget.fs({ - notification_preset = { font = "Terminus 10", fg = theme.fg_normal }, - settings = function() - widget:set_markup(markup.fontfg(theme.font, "#80d9d8", string.format("%.1f", fs_now["/"].used) .. "% ")) - end -}) ---]] - --- Mail IMAP check ---[[ commented because it needs to be set before use -local mailicon = wibox.widget.imagebox() -theme.mail = lain.widget.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - if mailcount > 0 then - mailicon:set_image(theme.widget_mail) - widget:set_markup(markup.fontfg(theme.font, "#cccccc", mailcount .. " ")) - else - widget:set_text("") - --mailicon:set_image() -- not working in 4.0 - mailicon._private.image = nil - mailicon:emit_signal("widget::redraw_needed") - mailicon:emit_signal("widget::layout_changed") - end - end -}) ---]] - ---CPU -local cpuicon = wibox.widget.imagebox(theme.widget_cpu) -local cpu = lain.widget.cpu({ - settings = function() - widget:set_markup(markup.fontfg(theme.font, "#e33a6e", cpu_now.usage .. "% ")) - end -}) - --- Battery -local baticon = wibox.widget.imagebox(theme.widget_batt) -local bat = lain.widget.bat({ - settings = function() - local perc = bat_now.perc ~= "N/A" and bat_now.perc .. "%" or bat_now.perc - - if bat_now.ac_status == 1 then - perc = perc .. " plug" - end - - widget:set_markup(markup.fontfg(theme.font, theme.fg_normal, perc .. " ")) - end -}) - --- ALSA volume -local volicon = wibox.widget.imagebox(theme.widget_vol) -theme.volume = lain.widget.alsa({ - settings = function() - if volume_now.status == "off" then - volume_now.level = volume_now.level .. "M" - end - - widget:set_markup(markup.fontfg(theme.font, "#7493d2", volume_now.level .. "% ")) - end -}) - --- Net -local netdownicon = wibox.widget.imagebox(theme.widget_netdown) -local netdowninfo = wibox.widget.textbox() -local netupicon = wibox.widget.imagebox(theme.widget_netup) -local netupinfo = lain.widget.net({ - settings = function() - if iface ~= "network off" and - string.match(theme.weather.widget.text, "N/A") - then - theme.weather.update() - end - - widget:set_markup(markup.fontfg(theme.font, "#e54c62", net_now.sent .. " ")) - netdowninfo:set_markup(markup.fontfg(theme.font, "#87af5f", net_now.received .. " ")) - end -}) - --- MEM -local memicon = wibox.widget.imagebox(theme.widget_mem) -local memory = lain.widget.mem({ - settings = function() - widget:set_markup(markup.fontfg(theme.font, "#e0da37", mem_now.used .. "M ")) - end -}) - --- MPD -local mpdicon = wibox.widget.imagebox() -theme.mpd = lain.widget.mpd({ - settings = function() - mpd_notification_preset = { - text = string.format("%s [%s] - %s\n%s", mpd_now.artist, - mpd_now.album, mpd_now.date, mpd_now.title) - } - - if mpd_now.state == "play" then - artist = mpd_now.artist .. " > " - title = mpd_now.title .. " " - mpdicon:set_image(theme.widget_note_on) - elseif mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - else - artist = "" - title = "" - --mpdicon:set_image() -- not working in 4.0 - mpdicon._private.image = nil - mpdicon:emit_signal("widget::redraw_needed") - mpdicon:emit_signal("widget::layout_changed") - end - widget:set_markup(markup.fontfg(theme.font, "#e54c62", artist) .. markup.fontfg(theme.font, "#b2b2b2", title)) - end -}) - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - -- Create an imagebox widget which will contains an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(my_table.join( - awful.button({}, 1, function () awful.layout.inc( 1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function () awful.layout.inc(-1) end), - awful.button({}, 4, function () awful.layout.inc( 1) end), - awful.button({}, 5, function () awful.layout.inc(-1) end))) - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(19), bg = theme.bg_normal, fg = theme.fg_normal }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - --s.mylayoutbox, - s.mytaglist, - s.mypromptbox, - mpdicon, - theme.mpd.widget, - }, - --s.mytasklist, -- Middle widget - nil, - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - --mailicon, - --theme.mail.widget, - netdownicon, - netdowninfo, - netupicon, - netupinfo.widget, - volicon, - theme.volume.widget, - memicon, - memory.widget, - cpuicon, - --cpu.widget, - cpu_widget({ - width = 70, - step_width = 2, - step_spacing = 0, - color = '#a71dbf', - }), - --fsicon, - --theme.fs.widget, - weather_widget ({ - api_key='8f182658370a173d8c0a6d5bb499590f', - coordinates = {-25.833733, 28.168430}, - time_format_12h = true, - units = 'metric', - font_name = 'Carter One', - --icons = 'VitalyGorbachev', - show_hourly_forecast = true, - show_daily_forecast = true, - color = '#1dbfbc' - }), - --weathericon, - --theme.weather.widget, - tempicon, - baticon, - bat.widget, - clockicon, - mytextclock, - s.mylayoutbox, - }, - } - - -- Create the bottom wibox - -- s.mybottomwibox = awful.wibar({ position = "bottom", screen = s, border_width = 0, height = dpi(20), bg = theme.bg_normal, fg = theme.fg_normal }) - - -- Add widgets to the bottom wibox - -- s.mybottomwibox:setup { - -- layout = wibox.layout.align.horizontal, - -- { -- Left widgets - -- layout = wibox.layout.fixed.horizontal, - -- }, - -- s.mytasklist, -- Middle widget - -- { -- Right widgets - -- layout = wibox.layout.fixed.horizontal, - -- s.mylayoutbox, - -- }, - --} -end - -return theme diff --git a/awesome/.config/awesome/themes/multicolor/wall-back.png b/awesome/.config/awesome/themes/multicolor/wall-back.png deleted file mode 100755 index a3188d0..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/wall-back.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/wall.jpg b/awesome/.config/awesome/themes/multicolor/wall.jpg deleted file mode 100755 index 092fe7c..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/wall.jpg and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/README.md b/awesome/.config/awesome/themes/multicolor/weather-widget/README.md deleted file mode 100755 index e573bd4..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/README.md +++ /dev/null @@ -1,132 +0,0 @@ -# Weather widget - -[![GitHub issues by-label](https://img.shields.io/github/issues-raw/streetturtle/awesome-wm-widgets/weather)](https://github.com/streetturtle/awesome-wm-widgets/labels/weather) - - -Widget showing current, hourly and daily weather forecast. - -

- screenshot -

- -Widget consists of three sections: - - current weather, including humidity, wind speed, UV index - - hourly forecast for the next 24 hours - - daily forecast for the next five days - -## Customization - -It is possible to customize widget by providing a table with all or some of the following config parameters: - -| Name | Default | Description | -|---|---|---| -| coordinates | Required | Table with two elements: latitude and longitude, e.g. `{46.204400, 6.143200}` | -| api_key | Required | Get it [here](https://openweathermap.org/appid) | -| font_name | `beautiful.font:gsub("%s%d+$", "")` | **Name** of the font to use e.g. 'Play' | -| both_units_widget | false | Show temperature in both units - '28°C (83°F) | -| units | metric | `metric` for celsius, `imperial` for fahrenheit | -| show_hourly_forecast | false | Show hourly forecase section | -| time_format_12h |false | 12 or 24 hour format (13:00 - default or 1pm) | -| show_daily_forecast | false | Show daily forecast section | -| icon_pack_name | weather-underground-icons | Name of the icon pack, could be `weather-underground-icon` or `VitalyGorbachev` or create your own, more details below | -| icons_extension | `.svg` | File extension of icons in the pack | -| timeout | 120 | How often in seconds the widget refreshes | - - -### Icons: - -Widget comes with two predefined icon packs: - - - weather-underground-icons taken from [here](https://github.com/manifestinteractive/weather-underground-icons) - - VitalyGorbachev taken from [here](https://www.flaticon.com/authors/vitaly-gorbachev) - -To add your custom icons, create a folder with the pack name under `/icons` and use the folder name in widget's config. There should be 18 icons, preferably 128x128 minimum. Icons should also respect the naming convention, please check widget's source. - -### Examples: - - -#### Custom font, icons - -![example1](./screenshots/example1.png) - -```lua -weather_curl_widget({ - api_key='', - coordinates = {45.5017, -73.5673}, - time_format_12h = true, - units = 'imperial', - both_units_widget = true, - font_name = 'Carter One', - icons = 'VitalyGorbachev', - show_hourly_forecast = true, - show_daily_forecast = true, -}), -``` - -#### Only current weather - -![example2](./screenshots/example2.png) - -```lua -weather_curl_widget({ - api_key='', - coordinates = {45.5017, -73.5673}, -}), -``` - - - -## Installation - -1. Download json parser for lua from [github.com/rxi/json.lua](https://github.com/rxi/json.lua) and place it under **~/.config/awesome/** (don't forget to star a repo ): - - ```bash - wget -P ~/.config/awesome/ https://raw.githubusercontent.com/rxi/json.lua/master/json.lua - ``` - -1. Clone this repo under **~/.config/awesome/**: - - ```bash - git clone https://github.com/streetturtle/awesome-wm-widgets.git ~/.config/awesome/ - ``` - -1. Get Open Weather Map app id here: [openweathermap.org/appid](https://openweathermap.org/appid). - -1. Require weather widget at the beginning of **rc.lua**: - - ```lua - local weather_widget = require("awesome-wm-widgets.weather-widget.weather") - ``` - -1. Add widget to the tasklist: - - ```lua - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - ... - --default - weather_widget({ - api_key='', - coordinates = {45.5017, -73.5673}, - }), - , - --customized - weather_curl_widget({ - api_key='', - coordinates = {45.5017, -73.5673}, - time_format_12h = true, - units = 'imperial', - both_units_widget = true, - font_name = 'Carter One', - icons = 'VitalyGorbachev', - show_hourly_forecast = true, - show_daily_forecast = true, - }), - ... - ``` - - -## How it works - -TBW diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/broken-clouds-night.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/broken-clouds-night.svg deleted file mode 100755 index 8b7fc48..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/broken-clouds-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/broken-clouds.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/broken-clouds.svg deleted file mode 100755 index d42ea59..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/broken-clouds.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/clear-sky-night.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/clear-sky-night.svg deleted file mode 100755 index 44f096c..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/clear-sky-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/clear-sky.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/clear-sky.svg deleted file mode 100755 index dc82163..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/clear-sky.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/few-clouds-night.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/few-clouds-night.svg deleted file mode 100755 index 8b7fc48..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/few-clouds-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/few-clouds.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/few-clouds.svg deleted file mode 100755 index d42ea59..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/few-clouds.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/mist-night.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/mist-night.svg deleted file mode 100755 index 960b07d..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/mist-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/mist.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/mist.svg deleted file mode 100755 index 770f8d7..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/mist.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/rain-night.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/rain-night.svg deleted file mode 100755 index 11ecf00..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/rain-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/rain.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/rain.svg deleted file mode 100755 index 11ecf00..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/rain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/scattered-clouds-night.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/scattered-clouds-night.svg deleted file mode 100755 index 8b7fc48..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/scattered-clouds-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/scattered-clouds.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/scattered-clouds.svg deleted file mode 100755 index d42ea59..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/scattered-clouds.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/shower-rain-night.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/shower-rain-night.svg deleted file mode 100755 index 4d1897c..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/shower-rain-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/shower-rain.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/shower-rain.svg deleted file mode 100755 index 4d1897c..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/shower-rain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/snow-night.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/snow-night.svg deleted file mode 100755 index bee891e..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/snow-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/snow.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/snow.svg deleted file mode 100755 index e2ea140..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/snow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/thunderstorm-night.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/thunderstorm-night.svg deleted file mode 100755 index 1813197..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/thunderstorm-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/thunderstorm.svg b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/thunderstorm.svg deleted file mode 100755 index 44a733c..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/VitalyGorbachev/thunderstorm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/broken-clouds-night.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/broken-clouds-night.png deleted file mode 100755 index 061d1cd..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/broken-clouds-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/broken-clouds.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/broken-clouds.png deleted file mode 100755 index 5967d92..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/broken-clouds.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/clear-sky-night.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/clear-sky-night.png deleted file mode 100755 index cc40d0f..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/clear-sky-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/clear-sky.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/clear-sky.png deleted file mode 100755 index acf8e5c..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/clear-sky.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/few-clouds-night.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/few-clouds-night.png deleted file mode 100755 index 9c34fab..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/few-clouds-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/few-clouds.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/few-clouds.png deleted file mode 100755 index 7580fc5..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/few-clouds.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/mist-night.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/mist-night.png deleted file mode 100755 index 102142a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/mist-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/mist.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/mist.png deleted file mode 100755 index 102142a..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/mist.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/rain-night.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/rain-night.png deleted file mode 100755 index 49f0903..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/rain-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/rain.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/rain.png deleted file mode 100755 index 49f0903..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/rain.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/scattered-clouds-night.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/scattered-clouds-night.png deleted file mode 100755 index 63cb1b2..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/scattered-clouds-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/scattered-clouds.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/scattered-clouds.png deleted file mode 100755 index 63cb1b2..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/scattered-clouds.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/shower-rain-night.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/shower-rain-night.png deleted file mode 100755 index 49f0903..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/shower-rain-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/shower-rain.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/shower-rain.png deleted file mode 100755 index 49f0903..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/shower-rain.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/snow-night.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/snow-night.png deleted file mode 100755 index 0a7f006..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/snow-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/snow.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/snow.png deleted file mode 100755 index 0a7f006..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/snow.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/thunderstorm-night.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/thunderstorm-night.png deleted file mode 100755 index 2102104..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/thunderstorm-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/thunderstorm.png b/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/thunderstorm.png deleted file mode 100755 index 2102104..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/icons/weather-underground-icons/thunderstorm.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/screenshots/example1.png b/awesome/.config/awesome/themes/multicolor/weather-widget/screenshots/example1.png deleted file mode 100755 index 7074faa..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/screenshots/example1.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/screenshots/example2.png b/awesome/.config/awesome/themes/multicolor/weather-widget/screenshots/example2.png deleted file mode 100755 index 857274b..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/screenshots/example2.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/screenshots/weather-widget.png b/awesome/.config/awesome/themes/multicolor/weather-widget/screenshots/weather-widget.png deleted file mode 100755 index c7fc37e..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/screenshots/weather-widget.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/weather-widget.png b/awesome/.config/awesome/themes/multicolor/weather-widget/weather-widget.png deleted file mode 100755 index 177b350..0000000 Binary files a/awesome/.config/awesome/themes/multicolor/weather-widget/weather-widget.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/weather.json b/awesome/.config/awesome/themes/multicolor/weather-widget/weather.json deleted file mode 100755 index 4a18714..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/weather.json +++ /dev/null @@ -1,1224 +0,0 @@ -{ - "lat": 33.44, - "lon": -94.04, - "timezone": "America/Chicago", - "timezone_offset": -18000, - "current": { - "dt": 1594490161, - "sunrise": 1594466108, - "sunset": 1594517275, - "temp": 32.69, - "feels_like": 36.81, - "pressure": 1017, - "humidity": 59, - "dew_point": 23.63, - "uvi": 7.94, - "clouds": 40, - "visibility": 16093, - "wind_speed": 2.1, - "wind_deg": 250, - "weather": [ - { - "id": 802, - "main": "Clear Sky", - "description": "clear sky", - "icon": "01d" - } - ] - }, - "hourly": [ - { - "dt": 1594486800, - "temp": 32.69, - "feels_like": 36.4, - "pressure": 1017, - "humidity": 59, - "dew_point": 23.63, - "clouds": 40, - "wind_speed": 2.68, - "wind_deg": 242, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594490400, - "temp": 33.38, - "feels_like": 37.27, - "pressure": 1017, - "humidity": 59, - "dew_point": 24.27, - "clouds": 21, - "wind_speed": 2.97, - "wind_deg": 248, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ] - }, - { - "dt": 1594494000, - "temp": 34.44, - "feels_like": 38.38, - "pressure": 1015, - "humidity": 55, - "dew_point": 24.09, - "clouds": 28, - "wind_speed": 2.74, - "wind_deg": 254, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594497600, - "temp": 35.32, - "feels_like": 39.58, - "pressure": 1014, - "humidity": 53, - "dew_point": 24.28, - "clouds": 18, - "wind_speed": 2.45, - "wind_deg": 260, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ] - }, - { - "dt": 1594501200, - "temp": 35.57, - "feels_like": 39.73, - "pressure": 1013, - "humidity": 52, - "dew_point": 24.19, - "clouds": 16, - "wind_speed": 2.52, - "wind_deg": 259, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ] - }, - { - "dt": 1594504800, - "temp": 35.34, - "feels_like": 39.82, - "pressure": 1012, - "humidity": 55, - "dew_point": 25.07, - "clouds": 13, - "wind_speed": 2.68, - "wind_deg": 256, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ] - }, - { - "dt": 1594508400, - "temp": 34.85, - "feels_like": 40.34, - "pressure": 1012, - "humidity": 61, - "dew_point": 26.36, - "clouds": 10, - "wind_speed": 2.42, - "wind_deg": 249, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594512000, - "temp": 33.39, - "feels_like": 39.08, - "pressure": 1012, - "humidity": 67, - "dew_point": 26.53, - "clouds": 9, - "wind_speed": 2.34, - "wind_deg": 246, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594515600, - "temp": 30.82, - "feels_like": 35.85, - "pressure": 1012, - "humidity": 73, - "dew_point": 25.61, - "clouds": 0, - "wind_speed": 2.35, - "wind_deg": 240, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594519200, - "temp": 29.56, - "feels_like": 33.64, - "pressure": 1012, - "humidity": 73, - "dew_point": 24.34, - "clouds": 0, - "wind_speed": 2.65, - "wind_deg": 227, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594522800, - "temp": 28.72, - "feels_like": 32.55, - "pressure": 1012, - "humidity": 75, - "dew_point": 23.97, - "clouds": 0, - "wind_speed": 2.7, - "wind_deg": 223, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594526400, - "temp": 27.79, - "feels_like": 31.42, - "pressure": 1012, - "humidity": 77, - "dew_point": 23.56, - "clouds": 0, - "wind_speed": 2.61, - "wind_deg": 211, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594530000, - "temp": 27.27, - "feels_like": 30.91, - "pressure": 1012, - "humidity": 79, - "dew_point": 23.39, - "clouds": 0, - "wind_speed": 2.54, - "wind_deg": 226, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594533600, - "temp": 27.17, - "feels_like": 30.72, - "pressure": 1012, - "humidity": 79, - "dew_point": 23.23, - "clouds": 0, - "wind_speed": 2.58, - "wind_deg": 213, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594537200, - "temp": 26.91, - "feels_like": 30.06, - "pressure": 1012, - "humidity": 78, - "dew_point": 22.95, - "clouds": 0, - "wind_speed": 2.79, - "wind_deg": 225, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594540800, - "temp": 26.57, - "feels_like": 29.76, - "pressure": 1011, - "humidity": 79, - "dew_point": 22.68, - "clouds": 33, - "wind_speed": 2.63, - "wind_deg": 217, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03n" - } - ] - }, - { - "dt": 1594544400, - "temp": 26.39, - "feels_like": 28.98, - "pressure": 1011, - "humidity": 78, - "dew_point": 22.36, - "clouds": 56, - "wind_speed": 3.19, - "wind_deg": 191, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04n" - } - ] - }, - { - "dt": 1594548000, - "temp": 25.97, - "feels_like": 29.15, - "pressure": 1011, - "humidity": 79, - "dew_point": 22.12, - "clouds": 67, - "wind_speed": 2.2, - "wind_deg": 211, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04n" - } - ] - }, - { - "dt": 1594551600, - "temp": 25.6, - "feels_like": 28.65, - "pressure": 1012, - "humidity": 79, - "dew_point": 21.77, - "clouds": 72, - "wind_speed": 2.12, - "wind_deg": 257, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04n" - } - ] - }, - { - "dt": 1594555200, - "temp": 25.25, - "feels_like": 29.31, - "pressure": 1012, - "humidity": 84, - "dew_point": 22.42, - "clouds": 74, - "wind_speed": 1.18, - "wind_deg": 276, - "weather": [ - { - "id": 500, - "main": "Rain", - "description": "light rain", - "icon": "10d" - } - ], - "rain": { - "1h": 0.66 - } - }, - { - "dt": 1594558800, - "temp": 26.51, - "feels_like": 31.02, - "pressure": 1013, - "humidity": 82, - "dew_point": 23.22, - "clouds": 91, - "wind_speed": 1.19, - "wind_deg": 227, - "weather": [ - { - "id": 500, - "main": "Rain", - "description": "light rain", - "icon": "10d" - } - ], - "rain": { - "1h": 0.5 - } - }, - { - "dt": 1594562400, - "temp": 27.99, - "feels_like": 31.34, - "pressure": 1012, - "humidity": 75, - "dew_point": 23.26, - "clouds": 87, - "wind_speed": 2.82, - "wind_deg": 223, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594566000, - "temp": 29.6, - "feels_like": 32.28, - "pressure": 1012, - "humidity": 67, - "dew_point": 23.02, - "clouds": 63, - "wind_speed": 3.51, - "wind_deg": 236, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594569600, - "temp": 31.12, - "feels_like": 33.49, - "pressure": 1011, - "humidity": 62, - "dew_point": 23.22, - "clouds": 52, - "wind_speed": 4.08, - "wind_deg": 239, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594573200, - "temp": 32.66, - "feels_like": 35.05, - "pressure": 1011, - "humidity": 58, - "dew_point": 23.6, - "clouds": 46, - "wind_speed": 4.31, - "wind_deg": 238, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594576800, - "temp": 34.15, - "feels_like": 36.59, - "pressure": 1011, - "humidity": 54, - "dew_point": 23.74, - "clouds": 40, - "wind_speed": 4.4, - "wind_deg": 236, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594580400, - "temp": 35.24, - "feels_like": 37.8, - "pressure": 1010, - "humidity": 51, - "dew_point": 23.83, - "clouds": 0, - "wind_speed": 4.27, - "wind_deg": 246, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594584000, - "temp": 35.73, - "feels_like": 38.39, - "pressure": 1009, - "humidity": 50, - "dew_point": 23.92, - "clouds": 0, - "wind_speed": 4.23, - "wind_deg": 262, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594587600, - "temp": 35.89, - "feels_like": 38.87, - "pressure": 1008, - "humidity": 51, - "dew_point": 24.29, - "clouds": 0, - "wind_speed": 4.17, - "wind_deg": 267, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594591200, - "temp": 35.63, - "feels_like": 39.46, - "pressure": 1008, - "humidity": 55, - "dew_point": 25.31, - "clouds": 0, - "wind_speed": 3.85, - "wind_deg": 266, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594594800, - "temp": 35, - "feels_like": 39.97, - "pressure": 1007, - "humidity": 61, - "dew_point": 26.37, - "clouds": 0, - "wind_speed": 3.3, - "wind_deg": 262, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594598400, - "temp": 33.25, - "feels_like": 38.23, - "pressure": 1007, - "humidity": 66, - "dew_point": 26.08, - "clouds": 0, - "wind_speed": 2.98, - "wind_deg": 259, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594602000, - "temp": 30.86, - "feels_like": 35.71, - "pressure": 1008, - "humidity": 72, - "dew_point": 25.37, - "clouds": 0, - "wind_speed": 2.44, - "wind_deg": 254, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594605600, - "temp": 29.71, - "feels_like": 34.14, - "pressure": 1008, - "humidity": 72, - "dew_point": 24.24, - "clouds": 0, - "wind_speed": 2.07, - "wind_deg": 246, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594609200, - "temp": 29.09, - "feels_like": 33.6, - "pressure": 1009, - "humidity": 73, - "dew_point": 23.92, - "clouds": 0, - "wind_speed": 1.65, - "wind_deg": 239, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594612800, - "temp": 28.41, - "feels_like": 33.33, - "pressure": 1009, - "humidity": 75, - "dew_point": 23.77, - "clouds": 0, - "wind_speed": 0.9, - "wind_deg": 301, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594616400, - "temp": 27.65, - "feels_like": 31.94, - "pressure": 1010, - "humidity": 79, - "dew_point": 23.7, - "clouds": 0, - "wind_speed": 1.9, - "wind_deg": 342, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594620000, - "temp": 26.81, - "feels_like": 30.18, - "pressure": 1010, - "humidity": 78, - "dew_point": 22.81, - "clouds": 0, - "wind_speed": 2.39, - "wind_deg": 13, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594623600, - "temp": 25.86, - "feels_like": 28.37, - "pressure": 1010, - "humidity": 75, - "dew_point": 21.3, - "clouds": 0, - "wind_speed": 2.45, - "wind_deg": 41, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594627200, - "temp": 24.94, - "feels_like": 26.96, - "pressure": 1010, - "humidity": 75, - "dew_point": 20.36, - "clouds": 0, - "wind_speed": 2.53, - "wind_deg": 49, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594630800, - "temp": 23.94, - "feels_like": 25.44, - "pressure": 1010, - "humidity": 78, - "dew_point": 19.9, - "clouds": 2, - "wind_speed": 3.05, - "wind_deg": 56, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594634400, - "temp": 23.22, - "feels_like": 25.05, - "pressure": 1011, - "humidity": 81, - "dew_point": 19.94, - "clouds": 14, - "wind_speed": 2.51, - "wind_deg": 65, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02n" - } - ] - }, - { - "dt": 1594638000, - "temp": 22.87, - "feels_like": 24.56, - "pressure": 1011, - "humidity": 81, - "dew_point": 19.61, - "clouds": 17, - "wind_speed": 2.48, - "wind_deg": 74, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02n" - } - ] - }, - { - "dt": 1594641600, - "temp": 22.82, - "feels_like": 24.7, - "pressure": 1012, - "humidity": 83, - "dew_point": 19.8, - "clouds": 29, - "wind_speed": 2.44, - "wind_deg": 63, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594645200, - "temp": 23.84, - "feels_like": 25.88, - "pressure": 1013, - "humidity": 80, - "dew_point": 20.21, - "clouds": 100, - "wind_speed": 2.48, - "wind_deg": 62, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594648800, - "temp": 25, - "feels_like": 27, - "pressure": 1013, - "humidity": 75, - "dew_point": 20.37, - "clouds": 100, - "wind_speed": 2.59, - "wind_deg": 67, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594652400, - "temp": 26.18, - "feels_like": 27.69, - "pressure": 1012, - "humidity": 73, - "dew_point": 21.06, - "clouds": 100, - "wind_speed": 3.79, - "wind_deg": 101, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594656000, - "temp": 28.36, - "feels_like": 30.56, - "pressure": 1012, - "humidity": 69, - "dew_point": 22.32, - "clouds": 83, - "wind_speed": 3.66, - "wind_deg": 128, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04d" - } - ] - } - ], - "daily": [ - { - "dt": 1594490400, - "sunrise": 1594466108, - "sunset": 1594517275, - "temp": { - "day": 33.38, - "min": 27.17, - "max": 34.96, - "night": 27.17, - "eve": 33.35, - "morn": 32.69 - }, - "feels_like": { - "day": 37.27, - "night": 30.72, - "eve": 39.01, - "morn": 36.67 - }, - "pressure": 1017, - "humidity": 59, - "dew_point": 24.27, - "wind_speed": 2.97, - "wind_deg": 248, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ], - "clouds": 21, - "uvi": 11.94 - }, - { - "dt": 1594576800, - "sunrise": 1594552543, - "sunset": 1594603655, - "temp": { - "day": 34.15, - "min": 25.25, - "max": 35.89, - "night": 26.81, - "eve": 33.25, - "morn": 25.25 - }, - "feels_like": { - "day": 36.59, - "night": 30.18, - "eve": 38.23, - "morn": 29.31 - }, - "pressure": 1011, - "humidity": 54, - "dew_point": 23.74, - "wind_speed": 4.4, - "wind_deg": 236, - "weather": [ - { - "id": 500, - "main": "Rain", - "description": "light rain", - "icon": "10d" - } - ], - "clouds": 40, - "rain": 1.16, - "uvi": 11.61 - }, - { - "dt": 1594663200, - "sunrise": 1594638978, - "sunset": 1594690034, - "temp": { - "day": 29.22, - "min": 22.82, - "max": 29.22, - "night": 26.71, - "eve": 28.98, - "morn": 22.82 - }, - "feels_like": { - "day": 34.31, - "night": 28.82, - "eve": 34.45, - "morn": 24.7 - }, - "pressure": 1012, - "humidity": 72, - "dew_point": 23.66, - "wind_speed": 0.74, - "wind_deg": 287, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ], - "clouds": 85, - "uvi": 12.72 - }, - { - "dt": 1594749600, - "sunrise": 1594725414, - "sunset": 1594776411, - "temp": { - "day": 33.67, - "min": 24.06, - "max": 35.68, - "night": 25.94, - "eve": 32.24, - "morn": 24.06 - }, - "feels_like": { - "day": 35.84, - "night": 27.78, - "eve": 35.66, - "morn": 27.28 - }, - "pressure": 1012, - "humidity": 50, - "dew_point": 21.95, - "wind_speed": 3.45, - "wind_deg": 183, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ], - "clouds": 9, - "uvi": 11.67 - }, - { - "dt": 1594836000, - "sunrise": 1594811851, - "sunset": 1594862786, - "temp": { - "day": 32.79, - "min": 24.61, - "max": 35.24, - "night": 26.42, - "eve": 31.72, - "morn": 24.61 - }, - "feels_like": { - "day": 34.67, - "night": 28.57, - "eve": 35.11, - "morn": 27.47 - }, - "pressure": 1014, - "humidity": 53, - "dew_point": 22.04, - "wind_speed": 3.97, - "wind_deg": 208, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ], - "clouds": 35, - "uvi": 11.55 - }, - { - "dt": 1594922400, - "sunrise": 1594898288, - "sunset": 1594949160, - "temp": { - "day": 33.89, - "min": 24.07, - "max": 35.5, - "night": 26.61, - "eve": 32.58, - "morn": 24.07 - }, - "feels_like": { - "day": 35.74, - "night": 29.39, - "eve": 36.52, - "morn": 27.33 - }, - "pressure": 1015, - "humidity": 49, - "dew_point": 22.01, - "wind_speed": 3.81, - "wind_deg": 225, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ], - "clouds": 29, - "uvi": 11.67 - }, - { - "dt": 1595008800, - "sunrise": 1594984726, - "sunset": 1595035532, - "temp": { - "day": 34.95, - "min": 24.45, - "max": 36.42, - "night": 26.97, - "eve": 33.81, - "morn": 24.45 - }, - "feels_like": { - "day": 38.11, - "night": 29.69, - "eve": 38.22, - "morn": 26.84 - }, - "pressure": 1016, - "humidity": 50, - "dew_point": 23.17, - "wind_speed": 2.94, - "wind_deg": 230, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ], - "clouds": 46, - "uvi": 11.86 - }, - { - "dt": 1595095200, - "sunrise": 1595071164, - "sunset": 1595121903, - "temp": { - "day": 35.47, - "min": 24.4, - "max": 37.04, - "night": 28.18, - "eve": 34.23, - "morn": 24.4 - }, - "feels_like": { - "day": 38.15, - "night": 30.61, - "eve": 38.67, - "morn": 26.95 - }, - "pressure": 1015, - "humidity": 46, - "dew_point": 22.36, - "wind_speed": 2.93, - "wind_deg": 238, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ], - "clouds": 2, - "uvi": 11.67 - } - ] -} \ No newline at end of file diff --git a/awesome/.config/awesome/themes/multicolor/weather-widget/weather.lua b/awesome/.config/awesome/themes/multicolor/weather-widget/weather.lua deleted file mode 100755 index 3d3b8e0..0000000 --- a/awesome/.config/awesome/themes/multicolor/weather-widget/weather.lua +++ /dev/null @@ -1,468 +0,0 @@ -------------------------------------------------- --- Weather Widget based on the OpenWeatherMap --- https://openweathermap.org/ --- --- @author Pavel Makhov --- @copyright 2020 Pavel Makhov -------------------------------------------------- -local awful = require("awful") -local watch = require("awful.widget.watch") -local json = require("json") -local naughty = require("naughty") -local wibox = require("wibox") -local gears = require("gears") -local beautiful = require("beautiful") - -local HOME_DIR = os.getenv("HOME") -local WIDGET_DIR = HOME_DIR .. '/.config/awesome/awesome-wm-widgets/weather-widget' -local GET_FORECAST_CMD = [[bash -c "curl -s --show-error -X GET '%s'"]] - -local function show_warning(message) - naughty.notify { - preset = naughty.config.presets.critical, - title = 'Weather Widget', - text = message - } -end - -local weather_widget = {} -local warning_shown = false -local notification -local tooltip = awful.tooltip { - mode = 'outside', - preferred_positions = {'bottom'} -} - -local weather_popup = awful.popup { - ontop = true, - visible = false, - shape = gears.shape.rounded_rect, - border_width = 1, - border_color = beautiful.bg_focus, - maximum_width = 400, - offset = {y = 5}, - widget = {} -} - ---- Maps openWeatherMap icon name to file name w/o extension -local icon_map = { - ["01d"] = "clear-sky", - ["02d"] = "few-clouds", - ["03d"] = "scattered-clouds", - ["04d"] = "broken-clouds", - ["09d"] = "shower-rain", - ["10d"] = "rain", - ["11d"] = "thunderstorm", - ["13d"] = "snow", - ["50d"] = "mist", - ["01n"] = "clear-sky-night", - ["02n"] = "few-clouds-night", - ["03n"] = "scattered-clouds-night", - ["04n"] = "broken-clouds-night", - ["09n"] = "shower-rain-night", - ["10n"] = "rain-night", - ["11n"] = "thunderstorm-night", - ["13n"] = "snow-night", - ["50n"] = "mist-night" -} - ---- Return wind direction as a string -local function to_direction(degrees) - -- Ref: https://www.campbellsci.eu/blog/convert-wind-directions - if degrees == nil then return "Unknown dir" end - local directions = { - "N", "NNE", "NE", "ENE", "E", "ESE", "SE", "SSE", "S", "SSW", "SW", - "WSW", "W", "WNW", "NW", "NNW", "N" - } - return directions[math.floor((degrees % 360) / 22.5) + 1] -end - ---- Convert degrees Celsius to Fahrenheit -local function celsius_to_fahrenheit(c) return c * 9 / 5 + 32 end - --- Convert degrees Fahrenheit to Celsius -local function fahrenheit_to_celsius(f) return (f - 32) * 5 / 9 end - -local function gen_temperature_str(temp, fmt_str, show_other_units, units) - local temp_str = string.format(fmt_str, temp) - local s = temp_str .. '°' .. (units == 'metric' and 'C' or 'F') - - if (show_other_units) then - local temp_conv, units_conv - if (units == 'metric') then - temp_conv = celsius_to_fahrenheit(temp) - units_conv = 'F' - else - temp_conv = fahrenheit_to_celsius(temp) - units_conv = 'C' - end - - local temp_conv_str = string.format(fmt_str, temp_conv) - s = s .. ' ' .. '(' .. temp_conv_str .. '°' .. units_conv .. ')' - end - return s -end - -local function uvi_index_color(uvi) - local color - if uvi >= 0 and uvi < 3 then color = '#A3BE8C' - elseif uvi >= 3 and uvi < 6 then color = '#EBCB8B' - elseif uvi >= 6 and uvi < 8 then color = '#D08770' - elseif uvi >= 8 and uvi < 11 then color = '#BF616A' - elseif uvi >= 11 then color = '#B48EAD' - end - - return '' .. uvi .. '' -end - -local function worker(args) - - local args = args or {} - - --- Validate required parameters - if args.coordinates == nil or args.api_key == nil then - show_warning('Required parameters are not set: ' .. - (args.coordinates == nil and 'coordinates' or '') .. - (args.api_key == nil and ', api_key ' or '')) - return - end - - local coordinates = args.coordinates - local api_key = args.api_key - local font_name = args.font_name or beautiful.font:gsub("%s%d+$", "") - local units = args.units or 'metric' - local time_format_12h = args.time_format_12h - local both_units_widget = args.both_units_widget or false - local show_hourly_forecast = args.show_hourly_forecast - local show_daily_forecast = args.show_daily_forecast - local icon_pack_name = args.icons or 'weather-underground-icons' - local icons_extension = args.icons_extension or '.png' - local timeout = args.timeout or 120 - - local owm_one_cal_api = - ('https://api.openweathermap.org/data/2.5/onecall' .. - '?lat=' .. coordinates[1] .. '&lon=' .. coordinates[2] .. '&appid=' .. api_key .. - '&units=' .. units .. '&exclude=minutely' .. - (show_hourly_forecast == false and ',hourly' or '') .. - (show_daily_forecast == false and ',daily' or '')) - - weather_widget = wibox.widget { - { - { - id = 'icon', - resize = true, - widget = wibox.widget.imagebox - }, - valign = 'center', - widget = wibox.container.place, - }, - { - id = 'txt', - widget = wibox.widget.textbox - }, - layout = wibox.layout.fixed.horizontal, - set_image = function(self, path) - self:get_children_by_id('icon')[1].image = path - end, - set_text = function(self, text) - self:get_children_by_id('txt')[1].text = text - end, - is_ok = function(self, is_ok) - if is_ok then - self:get_children_by_id('icon')[1]:set_opacity(1) - self:get_children_by_id('icon')[1]:emit_signal('widget:redraw_needed') - else - self:get_children_by_id('icon')[1]:set_opacity(0.2) - self:get_children_by_id('icon')[1]:emit_signal('widget:redraw_needed') - end - end - } - - local current_weather_widget = wibox.widget { - { - { - { - id = 'icon', - resize = true, - forced_width = 128, - forced_height = 128, - widget = wibox.widget.imagebox - }, - align = 'center', - widget = wibox.container.place - }, - { - id = 'description', - font = font_name .. ' 10', - align = 'center', - widget = wibox.widget.textbox - }, - forced_width = 128, - layout = wibox.layout.align.vertical - }, - { - { - { - id = 'temp', - font = font_name .. ' 36', - widget = wibox.widget.textbox - }, - { - id = 'feels_like_temp', - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - layout = wibox.layout.fixed.vertical - }, - { - { - id = 'wind', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - { - id = 'humidity', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - { - id = 'uv', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - expand = 'inside', - layout = wibox.layout.align.vertical - }, - spacing = 16, - forced_width = 150, - layout = wibox.layout.fixed.vertical - }, - forced_width = 300, - layout = wibox.layout.flex.horizontal, - update = function(self, weather) - self:get_children_by_id('icon')[1]:set_image(WIDGET_DIR .. '/icons/' .. icon_pack_name .. '/' .. icon_map[weather.weather[1].icon] .. icons_extension) - self:get_children_by_id('temp')[1]:set_text(gen_temperature_str(weather.temp, '%.0f', false, units)) - self:get_children_by_id('feels_like_temp')[1]:set_text('Feels like ' .. gen_temperature_str(weather.feels_like, '%.0f', false, units)) - self:get_children_by_id('description')[1]:set_text(weather.weather[1].description) - self:get_children_by_id('wind')[1]:set_markup('Wind: ' .. weather.wind_speed .. 'm/s (' .. to_direction(weather.wind_deg) .. ')') - self:get_children_by_id('humidity')[1]:set_markup('Humidity: ' .. weather.humidity .. '%') - self:get_children_by_id('uv')[1]:set_markup('UV: ' .. uvi_index_color(weather.uvi)) - end - } - - - local daily_forecast_widget = { - forced_width = 300, - layout = wibox.layout.flex.horizontal, - update = function(self, forecast, timezone_offset) - local count = #self - for i = 0, count do self[i]=nil end - for i, day in ipairs(forecast) do - if i > 5 then break end - local day_forecast = wibox.widget { - { - text = os.date('%a', tonumber(day.dt) + tonumber(timezone_offset)), - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - { - { - { - image = WIDGET_DIR .. '/icons/' .. icon_pack_name .. '/' .. icon_map[day.weather[1].icon] .. icons_extension, - resize = true, - forced_width = 48, - forced_height = 48, - widget = wibox.widget.imagebox - }, - align = 'center', - layout = wibox.container.place - }, - { - text = day.weather[1].description, - font = font_name .. ' 8', - align = 'center', - forced_height = 50, - widget = wibox.widget.textbox - }, - layout = wibox.layout.fixed.vertical - }, - { - { - text = gen_temperature_str(day.temp.day, '%.0f', false, units), - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - { - text = gen_temperature_str(day.temp.night, '%.0f', false, units), - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - layout = wibox.layout.fixed.vertical - }, - spacing = 8, - layout = wibox.layout.fixed.vertical - } - table.insert(self, day_forecast) - end - end - } - - local hourly_forecast_graph = wibox.widget { - step_width = 12, - color = '#EBCB8B', - background_color = beautiful.bg_normal, - forced_height = 100, - forced_width = 300, - widget = wibox.widget.graph, - set_max_value = function(self, new_max_value) - self.max_value = new_max_value - end, - set_min_value = function(self, new_min_value) - self.min_value = new_min_value - end - } - - local hourly_forecast_widget = { - layout = wibox.layout.fixed.vertical, - update = function(self, hourly) - local hours_below = { - id = 'hours', - layout = wibox.layout.flex.horizontal - } - local temp_below = { - id = 'temp', - forced_width = 300, - layout = wibox.layout.flex.horizontal - } - - local max_temp = -1000 - local min_temp = 1000 - local values = {} - for i, hour in ipairs(hourly) do - if i > 25 then break end - values[i] = hour.temp - if max_temp < hour.temp then max_temp = hour.temp end - if min_temp > hour.temp then min_temp = hour.temp end - if (i - 1) % 5 == 0 then - table.insert(hours_below, wibox.widget { - text = os.date(time_format_12h and '%I%p' or '%H:00', tonumber(hour.dt)), - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }) - table.insert(temp_below, wibox.widget { - markup = '' .. string.format('%.0f', hour.temp) .. '°' .. '', - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }) - end - end - hourly_forecast_graph:set_max_value(max_temp) - hourly_forecast_graph:set_min_value(min_temp * 0.7) -- move graph a bit up - for i, value in ipairs(values) do - hourly_forecast_graph:add_value(value) - end - - local count = #self - for i = 0, count do self[i]=nil end - - table.insert(self, wibox.widget{ - { - hourly_forecast_graph, - reflection = {horizontal = true}, - widget = wibox.container.mirror - }, - { - temp_below, - valign = 'bottom', - widget = wibox.container.place - }, - id = 'graph', - layout = wibox.layout.stack - }) - table.insert(self, hours_below) - end - } - - local function update_widget(widget, stdout, stderr) - if stderr ~= '' then - if not warning_shown then - if ( - stderr ~= 'curl: (52) Empty reply from server' and - stderr ~= 'curl: (28) Failed to connect to api.openweathermap.org port 443: Connection timed out' and - stderr:find( - '^curl: %(18%) transfer closed with %d+ bytes remaining to read$' - ) ~= nil - ) then - show_warning(stderr) - end - warning_shown = true - widget:is_ok(false) - tooltip:add_to_object(widget) - - widget:connect_signal('mouse::enter', function() tooltip.text = stderr end) - end - return - end - - warning_shown = false - tooltip:remove_from_object(widget) - widget:is_ok(true) - - local result = json.decode(stdout) - - widget:set_image(WIDGET_DIR .. '/icons/' .. icon_pack_name .. '/' .. icon_map[result.current.weather[1].icon] .. icons_extension) - widget:set_text(gen_temperature_str(result.current.temp, '%.0f', both_units_widget, units)) - - current_weather_widget:update(result.current) - - local final_widget = { - current_weather_widget, - spacing = 16, - layout = wibox.layout.fixed.vertical - } - - if show_hourly_forecast then - hourly_forecast_widget:update(result.hourly) - table.insert(final_widget, hourly_forecast_widget) - end - - if show_daily_forecast then - daily_forecast_widget:update(result.daily, result.timezone_offset) - table.insert(final_widget, daily_forecast_widget) - end - - weather_popup:setup({ - { - final_widget, - margins = 10, - widget = wibox.container.margin - }, - bg = beautiful.bg_normal, - widget = wibox.container.background - }) - end - - weather_widget:buttons(awful.util.table.join(awful.button({}, 1, function() - if weather_popup.visible then - weather_popup.visible = not weather_popup.visible - else - weather_popup:move_next_to(mouse.current_widget_geometry) - end - end))) - - watch( - string.format(GET_FORECAST_CMD, owm_one_cal_api), - timeout, -- API limit is 1k req/day; day has 1440 min; every 2 min is good - update_widget, weather_widget - ) - - return weather_widget -end - -return setmetatable(weather_widget, {__call = function(_, ...) return worker(...) end}) diff --git a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/README.md b/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/README.md deleted file mode 100755 index b323f9b..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/README.md +++ /dev/null @@ -1,71 +0,0 @@ -# CPU widget - -[![GitHub issues by-label](https://img.shields.io/github/issues-raw/streetturtle/awesome-wm-widgets/cpu)](https://github.com/streetturtle/awesome-wm-widgets/labels/cpu) - -This widget shows the average CPU load among all cores of the machine: - -![screenshot](./cpu.gif) - -## How it works - -To measure the load I took Paul Colby's bash [script](http://colby.id.au/calculating-cpu-usage-from-proc-stat/) and rewrote it in Lua, which was quite simple. -So awesome simply reads the first line of /proc/stat: - -```bash -$ cat /proc/stat | grep '^cpu ' -cpu 197294 718 50102 2002182 3844 0 2724 0 0 0 -``` - -and calculates the percentage. - -## Customization - -It is possible to customize widget by providing a table with all or some of the following config parameters: - -| Name | Default | Description | -|---|---|---| -| `width` | 50 | Width of the widget | -| `step_width` | 2 | Width of the step | -| `step_spacing` | 1 | Space size between steps | -| `color` | `beautiful.fg_normal` | Color of the graph | -| `enable_kill_button` | `false` | Show button which kills the process | -| `process_info_max_length` | `-1` | Truncate the process information. Some processes may have a very long list of parameters which won't fit in the screen, this options allows to truncate it to the given length. | -| `timeout` | 1 | How often in seconds the widget refreshes | - -### Example - -```lua -cpu_widget({ - width = 70, - step_width = 2, - step_spacing = 0, - color = '#434c5e' -}) -``` - -The config above results in the following widget: - -![custom](./custom.png) - -## Installation - -Clone/download repo and use widget in **rc.lua**: - -```lua -local cpu_widget = require("awesome-wm-widgets.cpu-widget.cpu-widget") -... -s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - ... - -- default - cpu_widget(), - -- or custom - cpu_widget({ - width = 70, - step_width = 2, - step_spacing = 0, - color = '#434c5e' - }) - ... -``` diff --git a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/cpu-png b/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/cpu-png deleted file mode 100755 index 96ba29f..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/cpu-png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/cpu-widget.lua b/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/cpu-widget.lua deleted file mode 100755 index 317ef0a..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/cpu-widget.lua +++ /dev/null @@ -1,290 +0,0 @@ -------------------------------------------------- --- CPU Widget for Awesome Window Manager --- Shows the current CPU utilization --- More details could be found here: --- https://github.com/streetturtle/awesome-wm-widgets/tree/master/cpu-widget - --- @author Pavel Makhov --- @copyright 2020 Pavel Makhov -------------------------------------------------- - -local awful = require("awful") -local watch = require("awful.widget.watch") -local wibox = require("wibox") -local beautiful = require("beautiful") -local gears = require("gears") - -local HOME_DIR = os.getenv("HOME") -local WIDGET_DIR = HOME_DIR .. '/.config/awesome/awesome-wm-widgets/cpu-widget' - -local widget = {} -local cpu_rows = { - spacing = 4, - layout = wibox.layout.fixed.vertical, -} -local is_update = true -local process_rows = { - layout = wibox.layout.fixed.vertical, -} - --- Splits the string by separator --- @return table with separated substrings -local function split(string_to_split, separator) - if separator == nil then separator = "%s" end - local t = {} - - for str in string.gmatch(string_to_split, "([^".. separator .."]+)") do - table.insert(t, str) - end - - return t -end - --- Checks if a string starts with a another string -local function starts_with(str, start) - return str:sub(1, #start) == start -end - - -local function create_textbox(args) - return wibox.widget{ - text = args.text, - align = args.align or 'left', - markup = args.markup, - forced_width = args.forced_width or 40, - widget = wibox.widget.textbox - } -end - -local function create_process_header(params) - local res = wibox.widget{ - create_textbox{markup = 'PID'}, - create_textbox{markup = 'Name'}, - { - create_textbox{markup = '%CPU'}, - create_textbox{markup = '%MEM'}, - params.with_action_column and create_textbox{forced_width = 20} or nil, - layout = wibox.layout.align.horizontal - }, - layout = wibox.layout.ratio.horizontal - } - res:ajust_ratio(2, 0.2, 0.47, 0.33) - - return res -end - -local function create_kill_process_button() - return wibox.widget{ - { - id = "icon", - image = WIDGET_DIR .. '/window-close-symbolic.svg', - resize = false, - opacity = 0.1, - widget = wibox.widget.imagebox - }, - widget = wibox.container.background - } -end - -local function worker(args) - - local args = args or {} - - local width = args.width or 50 - local step_width = args.step_width or 2 - local step_spacing = args.step_spacing or 1 - local color = args.color or beautiful.fg_normal - local enable_kill_button = args.enable_kill_button or false - local process_info_max_length = args.process_info_max_length or -1 - local timeout = args.timeout or 1 - - local cpugraph_widget = wibox.widget { - max_value = 100, - background_color = "#00000000", - forced_width = width, - step_width = step_width, - step_spacing = step_spacing, - widget = wibox.widget.graph, - color = "linear:0,0:0,20:0,#FF0000:0.3,#FFFF00:0.6," .. color - } - - local popup = awful.popup{ - ontop = true, - visible = false, - shape = gears.shape.rounded_rect, - border_width = 1, - border_color = beautiful.bg_normal, - maximum_width = 300, - offset = { y = 5 }, - widget = {} - } - - -- Do not update process rows when mouse cursor is over the widget - popup:connect_signal("mouse::enter", function(c) is_update = false end) - popup:connect_signal("mouse::leave", function(c) is_update = true end) - - cpugraph_widget:buttons( - awful.util.table.join( - awful.button({}, 1, function() - if popup.visible then - popup.visible = not popup.visible - else - popup:move_next_to(mouse.current_widget_geometry) - end - end) - ) - ) - - --- By default graph widget goes from left to right, so we mirror it and push up a bit - local cpu_widget = wibox.container.margin(wibox.container.mirror(cpugraph_widget, { horizontal = true }), 0, 0, 0, 2) - - local cpus = {} - watch([[bash -c "grep '^cpu.' /proc/stat; ps -eo '%p|%c|%C|' -o "%mem" -o '|%a' --sort=-%cpu | head -11 | tail -n +2"]], timeout, - function(widget, stdout) - local i = 1 - local j = 1 - for line in stdout:gmatch("[^\r\n]+") do - if starts_with(line, 'cpu') then - - if cpus[i] == nil then cpus[i] = {} end - - local name, user, nice, system, idle, iowait, irq, softirq, steal, guest, guest_nice = - line:match('(%w+)%s+(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)%s(%d+)') - - local total = user + nice + system + idle + iowait + irq + softirq + steal - - local diff_idle = idle - tonumber(cpus[i]['idle_prev'] == nil and 0 or cpus[i]['idle_prev']) - local diff_total = total - tonumber(cpus[i]['total_prev'] == nil and 0 or cpus[i]['total_prev']) - local diff_usage = (1000 * (diff_total - diff_idle) / diff_total + 5) / 10 - - cpus[i]['total_prev'] = total - cpus[i]['idle_prev'] = idle - - if i == 1 then - widget:add_value(diff_usage) - end - - local row = wibox.widget - { - create_textbox{text = name}, - create_textbox{text = math.floor(diff_usage) .. '%'}, - { - max_value = 100, - value = diff_usage, - forced_height = 20, - forced_width = 150, - paddings = 1, - margins = 4, - border_width = 1, - border_color = beautiful.bg_focus, - background_color = beautiful.bg_normal, - bar_border_width = 1, - bar_border_color = beautiful.bg_focus, - color = "linear:150,0:0,0:0,#D08770:0.3,#BF616A:0.6," .. beautiful.fg_normal, - widget = wibox.widget.progressbar, - - }, - layout = wibox.layout.ratio.horizontal - } - row:ajust_ratio(2, 0.15, 0.15, 0.7) - cpu_rows[i] = row - i = i + 1 - else - if is_update == true then - - local columns = split(line, '|') - - local pid = columns[1] - local comm = columns[2] - local cpu = columns[3] - local mem = columns[4] - local cmd = columns[5] - - local kill_proccess_button = enable_kill_button and create_kill_process_button() or nil - - local pid_name_rest = wibox.widget{ - create_textbox{text = pid}, - create_textbox{text = comm}, - { - create_textbox{text = cpu, align = 'center'}, - create_textbox{text = mem, align = 'center'}, - kill_proccess_button, - layout = wibox.layout.fixed.horizontal - }, - layout = wibox.layout.ratio.horizontal - } - pid_name_rest:ajust_ratio(2, 0.2, 0.47, 0.33) - - local row = wibox.widget { - { - pid_name_rest, - top = 4, - bottom = 4, - widget = wibox.container.margin - }, - widget = wibox.container.background - } - - row:connect_signal("mouse::enter", function(c) c:set_bg(beautiful.bg_focus) end) - row:connect_signal("mouse::leave", function(c) c:set_bg(beautiful.bg_normal) end) - - if enable_kill_button then - row:connect_signal("mouse::enter", function(c) kill_proccess_button.icon.opacity = 1 end) - row:connect_signal("mouse::leave", function(c) kill_proccess_button.icon.opacity = 0.1 end) - - kill_proccess_button:buttons( - awful.util.table.join( awful.button({}, 1, function() - row:set_bg('#ff0000') - awful.spawn.with_shell('kill -9 ' .. pid) - end) ) ) - end - - awful.tooltip { - objects = { row }, - mode = 'outside', - preferred_positions = {'bottom'}, - timer_function = function() - local text = cmd - if process_info_max_length > 0 and text:len() > process_info_max_length then - text = text:sub(0, process_info_max_length - 3) .. '...' - end - - return text - :gsub('%s%-', '\n\t-') -- put arguments on a new line - :gsub(':/', '\n\t\t:/') -- java classpath uses : to separate jars - end, - } - - process_rows[j] = row - - j = j + 1 - end - - end - end - popup:setup { - { - cpu_rows, - { - orientation = 'horizontal', - forced_height = 15, - color = beautiful.bg_focus, - widget = wibox.widget.separator - }, - create_process_header{with_action_column = enable_kill_button}, - process_rows, - layout = wibox.layout.fixed.vertical, - }, - margins = 8, - widget = wibox.container.margin - } - end, - cpugraph_widget - ) - - return cpu_widget -end - -return setmetatable(widget, { __call = function(_, ...) - return worker(...) -end }) diff --git a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/cpu.gif b/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/cpu.gif deleted file mode 100755 index cb97262..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/cpu.gif and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/custom.png b/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/custom.png deleted file mode 100755 index be275e4..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/custom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/window-close-symbolic.svg b/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/window-close-symbolic.svg deleted file mode 100755 index 46ff888..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/cpu-widget/window-close-symbolic.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - Gnome Symbolic Icon Theme - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/ac.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/ac.png deleted file mode 100755 index 96efcb4..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/ac.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/battery.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/battery.png deleted file mode 100755 index 8c85596..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/battery.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/battery_empty.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/battery_empty.png deleted file mode 100755 index 00821c9..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/battery_empty.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/battery_low.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/battery_low.png deleted file mode 100755 index 29f3fc5..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/battery_low.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/centerfair.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/centerfair.png deleted file mode 100755 index c4f64b0..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/centerfair.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/centerwork.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/centerwork.png deleted file mode 100755 index 9071516..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/centerwork.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/centerworkh.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/centerworkh.png deleted file mode 100755 index b1d1379..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/centerworkh.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/cpu.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/cpu.png deleted file mode 100755 index 35af1c3..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/cpu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/dwindle.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/dwindle.png deleted file mode 100755 index 649ea99..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/dwindle.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/fairh.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/fairh.png deleted file mode 100755 index 62d3d99..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/fairh.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/fairv.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/fairv.png deleted file mode 100755 index 131dd0f..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/fairv.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/floating.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/floating.png deleted file mode 100755 index d25c47b..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/floating.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/hdd.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/hdd.png deleted file mode 100755 index 0fb6833..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/hdd.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/magnifier.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/magnifier.png deleted file mode 100755 index 60d3e0d..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/magnifier.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/mail.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/mail.png deleted file mode 100755 index 474e602..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/mail.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/mail_on.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/mail_on.png deleted file mode 100755 index 19106d7..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/mail_on.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/max.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/max.png deleted file mode 100755 index 5b0a5b7..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/max.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/mem.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/mem.png deleted file mode 100755 index 7860a1a..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/mem.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/net.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/net.png deleted file mode 100755 index bc42fdc..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/net.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/net_wired.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/net_wired.png deleted file mode 100755 index e8cc2bd..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/net_wired.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/note.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/note.png deleted file mode 100755 index baa29c3..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/note.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/note_on.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/note_on.png deleted file mode 100755 index 1a7ab94..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/note_on.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/scissors.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/scissors.png deleted file mode 100755 index f8c700d..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/scissors.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/spiral.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/spiral.png deleted file mode 100755 index d9ee0f6..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/spiral.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/square_sel.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/square_sel.png deleted file mode 100755 index 1102a9f..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/square_sel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/square_unsel.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/square_unsel.png deleted file mode 100755 index 7386b85..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/square_unsel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/submenu.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/submenu.png deleted file mode 100755 index b55ebce..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/submenu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/task.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/task.png deleted file mode 100755 index 9701b68..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/task.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/temp.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/temp.png deleted file mode 100755 index 6793a9f..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/temp.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/termfair.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/termfair.png deleted file mode 100755 index 3e06023..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/termfair.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/tile.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/tile.png deleted file mode 100755 index 922c05c..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/tile.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/tilebottom.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/tilebottom.png deleted file mode 100755 index 6ec9cb8..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/tilebottom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/tileleft.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/tileleft.png deleted file mode 100755 index 8e3d2d6..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/tileleft.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/tiletop.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/tiletop.png deleted file mode 100755 index 3da75a1..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/tiletop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/close_focus.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/close_focus.png deleted file mode 100755 index b2051b0..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/close_focus.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/close_normal.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/close_normal.png deleted file mode 100755 index da6028c..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/close_normal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_active.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_active.png deleted file mode 100755 index 5fe84c0..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_inactive.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_inactive.png deleted file mode 100755 index 47f19f6..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_active.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_active.png deleted file mode 100755 index 576fa36..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_inactive.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_inactive.png deleted file mode 100755 index 4adc5e9..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_active.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_active.png deleted file mode 100755 index 7d9a11a..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_inactive.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_inactive.png deleted file mode 100755 index bce1d00..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_active.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_active.png deleted file mode 100755 index 9f24945..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_inactive.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_inactive.png deleted file mode 100755 index 2e56d32..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_active.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_active.png deleted file mode 100755 index 41a69e2..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_inactive.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_inactive.png deleted file mode 100755 index 2f3a2be..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_active.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_active.png deleted file mode 100755 index 0f937b7..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_inactive.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_inactive.png deleted file mode 100755 index a9a3206..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_active.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_active.png deleted file mode 100755 index a9bc8a2..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_inactive.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_inactive.png deleted file mode 100755 index 5493d8e..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_active.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_active.png deleted file mode 100755 index 1e150f5..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_inactive.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_inactive.png deleted file mode 100755 index 7e6c99b..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/vol.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/vol.png deleted file mode 100755 index bbf33d4..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/vol.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/vol_low.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/vol_low.png deleted file mode 100755 index aa3ce4d..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/vol_low.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/vol_mute.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/vol_mute.png deleted file mode 100755 index e855fd2..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/vol_mute.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/icons/vol_no.png b/awesome/.config/awesome/themes/powerarrow-dark/icons/vol_no.png deleted file mode 100755 index bbe917b..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/icons/vol_no.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/ram-widget/README.md b/awesome/.config/awesome/themes/powerarrow-dark/ram-widget/README.md deleted file mode 100755 index 461aa99..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/ram-widget/README.md +++ /dev/null @@ -1,9 +0,0 @@ -# Ram widget - -This widget shows the RAM usage. When clicked another widget appears with more detailed information: - -![screenshot](./out.gif) - -## Installation - -Please refer to the [installation](https://github.com/streetturtle/awesome-wm-widgets#installation) section of the repo. \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/ram-widget/out.gif b/awesome/.config/awesome/themes/powerarrow-dark/ram-widget/out.gif deleted file mode 100755 index 736f894..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/ram-widget/out.gif and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/ram-widget/ram-widget.lua b/awesome/.config/awesome/themes/powerarrow-dark/ram-widget/ram-widget.lua deleted file mode 100755 index 55b6fd7..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/ram-widget/ram-widget.lua +++ /dev/null @@ -1,91 +0,0 @@ -local awful = require("awful") -local watch = require("awful.widget.watch") -local wibox = require("wibox") - -local ramgraph_widget = {} - -local function worker(args) - - local args = args or {} - local timeout = args.timeout or 1 - - --- Main ram widget shown on wibar - ramgraph_widget = wibox.widget { - border_width = 0, - colors = { - '#74aeab', '#26403f' - }, - display_labels = false, - forced_width = 25, - widget = wibox.widget.piechart - } - - --- Widget which is shown when user clicks on the ram widget - local w = wibox { - height = 200, - width = 400, - ontop = true, - expand = true, - bg = '#1e252c', - max_widget_size = 500 - } - - w:setup { - border_width = 0, - colors = { - '#5ea19d', - '#55918e', - '#4b817e', - }, - display_labels = false, - forced_width = 25, - id = 'pie', - widget = wibox.widget.piechart - } - - local total, used, free, shared, buff_cache, available, total_swap, used_swap, free_swap - - local function getPercentage(value) - return math.floor(value / (total+total_swap) * 100 + 0.5) .. '%' - end - - watch('bash -c "LANGUAGE=en_US.UTF-8 free | grep -z Mem.*Swap.*"', timeout, - function(widget, stdout, stderr, exitreason, exitcode) - total, used, free, shared, buff_cache, available, total_swap, used_swap, free_swap = - stdout:match('(%d+)%s*(%d+)%s*(%d+)%s*(%d+)%s*(%d+)%s*(%d+)%s*Swap:%s*(%d+)%s*(%d+)%s*(%d+)') - - widget.data = { used, total-used } widget.data = { used, total-used } - - if w.visible then - w.pie.data_list = { - {'used ' .. getPercentage(used + used_swap), used + used_swap}, - {'free ' .. getPercentage(free + free_swap), free + free_swap}, - {'buff_cache ' .. getPercentage(buff_cache), buff_cache} - } - end - end, - ramgraph_widget - ) - - ramgraph_widget:buttons( - awful.util.table.join( - awful.button({}, 1, function() - awful.placement.top_right(w, { margins = {top = 25, right = 10}, parent = awful.screen.focused() }) - w.pie.data_list = { - {'used ' .. getPercentage(used + used_swap), used + used_swap}, - {'free ' .. getPercentage(free + free_swap), free + free_swap}, - {'buff_cache ' .. getPercentage(buff_cache), buff_cache} - } - w.pie.display_labels = true - w.visible = not w.visible - end) - ) - ) - - - return ramgraph_widget -end - -return setmetatable(ramgraph_widget, { __call = function(_, ...) - return worker(...) -end }) diff --git a/awesome/.config/awesome/themes/powerarrow-dark/theme.lua b/awesome/.config/awesome/themes/powerarrow-dark/theme.lua deleted file mode 100755 index beaf3b2..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/theme.lua +++ /dev/null @@ -1,402 +0,0 @@ ---[[ - - Powerarrow Dark Awesome WM theme - github.com/lcpz - ---]] -local cpu_widget = require("awesome-wm-widgets.cpu-widget.cpu-widget") -local weather_widget = require("awesome-wm-widgets.weather-widget.weather") -local ram_widget = require("awesome-wm-widgets.ram-widget.ram-widget") -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local os = os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-dark" ---theme.wallpaper = theme.dir .. "/wall.png" - -theme.font = "Ubuntu 11" -theme.fg_normal = "#DDDDFF" -theme.fg_focus = "#8218c4" -theme.fg_urgent = "#CC9393" -theme.bg_normal = "#1A1A1A" -theme.bg_focus = "#313131" -theme.bg_urgent = "#1A1A1A" -theme.border_width = dpi(3) -theme.border_normal = "#4c1852" -theme.border_focus = "#92289e" -theme.border_marked = "#CC9393" -theme.tasklist_bg_focus = "#1A1A1A" -theme.titlebar_bg_focus = theme.bg_focus -theme.titlebar_bg_normal = theme.bg_normal -theme.titlebar_fg_focus = theme.fg_focus -theme.menu_height = dpi(16) -theme.menu_width = dpi(140) -theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.layout_tile = theme.dir .. "/icons/tile.png" -theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_fairv = theme.dir .. "/icons/fairv.png" -theme.layout_fairh = theme.dir .. "/icons/fairh.png" -theme.layout_spiral = theme.dir .. "/icons/spiral.png" -theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_max = theme.dir .. "/icons/max.png" -theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" -theme.layout_floating = theme.dir .. "/icons/floating.png" -theme.widget_ac = theme.dir .. "/icons/ac.png" -theme.widget_battery = theme.dir .. "/icons/battery.png" -theme.widget_battery_low = theme.dir .. "/icons/battery_low.png" -theme.widget_battery_empty = theme.dir .. "/icons/battery_empty.png" -theme.widget_mem = theme.dir .. "/icons/mem.png" -theme.widget_cpu = theme.dir .. "/icons/cpu.png" -theme.widget_temp = theme.dir .. "/icons/temp.png" -theme.widget_net = theme.dir .. "/icons/net.png" -theme.widget_hdd = theme.dir .. "/icons/hdd.png" -theme.widget_music = theme.dir .. "/icons/note.png" -theme.widget_music_on = theme.dir .. "/icons/note_on.png" -theme.widget_vol = theme.dir .. "/icons/vol.png" -theme.widget_vol_low = theme.dir .. "/icons/vol_low.png" -theme.widget_vol_no = theme.dir .. "/icons/vol_no.png" -theme.widget_vol_mute = theme.dir .. "/icons/vol_mute.png" -theme.widget_mail = theme.dir .. "/icons/mail.png" -theme.widget_mail_on = theme.dir .. "/icons/mail_on.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true -theme.useless_gap = 7 -theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" -theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" -theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" -theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" -theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" -theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" -theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" -theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" -theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" -theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" - -local markup = lain.util.markup -local separators = lain.util.separators - --- Textclock -local clockicon = wibox.widget.imagebox(theme.widget_clock) -local clock = awful.widget.watch( - "date +'%a %d %b %I:%M'", 60, - function(widget, stdout) - widget:set_markup(" " .. markup.font(theme.font, stdout)) - end -) - - --- Calendar -theme.cal = lain.widget.cal({ - attach_to = { clock }, - notification_preset = { - font = "Terminus 10", - fg = theme.fg_normal, - bg = theme.bg_normal - } -}) - --- Mail IMAP check -local mailicon = wibox.widget.imagebox(theme.widget_mail) ---[[ commented because it needs to be set before use -mailicon:buttons(my_table.join(awful.button({ }, 1, function () awful.spawn(mail) end))) -theme.mail = lain.widget.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - if mailcount > 0 then - widget:set_markup(markup.font(theme.font, " " .. mailcount .. " ")) - mailicon:set_image(theme.widget_mail_on) - else - widget:set_text("") - mailicon:set_image(theme.widget_mail) - end - end -}) ---]] - --- Weather -local weathericon = wibox.widget.imagebox(theme.widget_weather) -theme.weather = lain.widget.weather({ - city_id = 1105777, - notification_preset = { font = "Terminus 10", fg = theme.fg_normal }, - weather_na_markup = markup.fontfg(theme.font, "#eca4c4", "N/A "), - settings = function() - descr = weather_now["weather"][1]["description"]:lower() - units = math.floor(weather_now["main"]["temp"]) - widget:set_markup(markup.fontfg(theme.font, "#eca4c4", descr .. " @ " .. units .. "°C ")) - end -}) - ---CPU -local cpuicon = wibox.widget.imagebox(theme.widget_cpu) -local cpu = lain.widget.cpu({ - settings = function() - widget:set_markup(markup.fontfg(theme.font, "#e33a6e", cpu_now.usage .. "% ")) - end -}) - --- MPD -local musicplr = awful.util.terminal .. " -title Music -g 130x34-320+16 -e ncmpcpp" -local mpdicon = wibox.widget.imagebox(theme.widget_music) -mpdicon:buttons(my_table.join( - awful.button({ modkey }, 1, function () awful.spawn.with_shell(musicplr) end), - awful.button({ }, 1, function () - os.execute("mpc prev") - theme.mpd.update() - end), - awful.button({ }, 2, function () - os.execute("mpc toggle") - theme.mpd.update() - end), - awful.button({ }, 3, function () - os.execute("mpc next") - theme.mpd.update() - end))) -theme.mpd = lain.widget.mpd({ - settings = function() - if mpd_now.state == "play" then - artist = " " .. mpd_now.artist .. " " - title = mpd_now.title .. " " - mpdicon:set_image(theme.widget_music_on) - elseif mpd_now.state == "pause" then - artist = " mpd " - title = "paused " - else - artist = "" - title = "" - mpdicon:set_image(theme.widget_music) - end - - widget:set_markup(markup.font(theme.font, markup("#EA6F81", artist) .. title)) - end -}) - --- MEM -local memicon = wibox.widget.imagebox(theme.widget_mem) -local mem = lain.widget.mem({ - settings = function() - widget:set_markup(markup.font(theme.font, " " .. mem_now.used .. "MB ")) - end -}) - --- CPU -local cpuicon = wibox.widget.imagebox(theme.widget_cpu) -local cpu = lain.widget.cpu({ - settings = function() - widget:set_markup(markup.font(theme.font, " " .. cpu_now.usage .. "% ")) - end -}) - --- Coretemp -local tempicon = wibox.widget.imagebox(theme.widget_temp) -local temp = lain.widget.temp({ - settings = function() - widget:set_markup(markup.font(theme.font, " " .. coretemp_now .. "°C ")) - end -}) - --- / fs -local fsicon = wibox.widget.imagebox(theme.widget_hdd) ---[[ commented because it needs Gio/Glib >= 2.54 -theme.fs = lain.widget.fs({ - notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Terminus 10" }, - settings = function() - widget:set_markup(markup.font(theme.font, " " .. fs_now["/"].percentage .. "% ")) - end -}) ---]] - --- Battery -local baticon = wibox.widget.imagebox(theme.widget_battery) -local bat = lain.widget.bat({ - settings = function() - if bat_now.status and bat_now.status ~= "N/A" then - if bat_now.ac_status == 1 then - baticon:set_image(theme.widget_ac) - elseif not bat_now.perc and tonumber(bat_now.perc) <= 5 then - baticon:set_image(theme.widget_battery_empty) - elseif not bat_now.perc and tonumber(bat_now.perc) <= 15 then - baticon:set_image(theme.widget_battery_low) - else - baticon:set_image(theme.widget_battery) - end - widget:set_markup(markup.font(theme.font, " " .. bat_now.perc .. "% ")) - else - widget:set_markup(markup.font(theme.font, " AC ")) - baticon:set_image(theme.widget_ac) - end - end -}) - --- ALSA volume -local volicon = wibox.widget.imagebox(theme.widget_vol) -theme.volume = lain.widget.alsa({ - settings = function() - if volume_now.status == "off" then - volicon:set_image(theme.widget_vol_mute) - elseif tonumber(volume_now.level) == 0 then - volicon:set_image(theme.widget_vol_no) - elseif tonumber(volume_now.level) <= 50 then - volicon:set_image(theme.widget_vol_low) - else - volicon:set_image(theme.widget_vol) - end - - widget:set_markup(markup.font(theme.font, " " .. volume_now.level .. "% ")) - end -}) -theme.volume.widget:buttons(awful.util.table.join( - awful.button({}, 4, function () - awful.util.spawn("amixer set Master 1%+") - theme.volume.update() - end), - awful.button({}, 5, function () - awful.util.spawn("amixer set Master 1%-") - theme.volume.update() - end) -)) - --- Net -local neticon = wibox.widget.imagebox(theme.widget_net) -local net = lain.widget.net({ - settings = function() - widget:set_markup(markup.font(theme.font, - markup("#8218c4", " " .. string.format("%06.1f", net_now.received)) - .. " " .. - markup("#641e8f", " " .. string.format("%06.1f", net_now.sent) .. " "))) - end -}) - --- Separators -local spr = wibox.widget.textbox(' ') -local arrl_dl = separators.arrow_left(theme.bg_focus, "alpha") -local arrl_ld = separators.arrow_left("alpha", theme.bg_focus) - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - -- Create an imagebox widget which will contains an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(my_table.join( - awful.button({}, 1, function () awful.layout.inc( 1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function () awful.layout.inc(-1) end), - awful.button({}, 4, function () awful.layout.inc( 1) end), - awful.button({}, 5, function () awful.layout.inc(-1) end))) - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = theme.bg_normal, fg = theme.fg_normal }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - --spr, - s.mytaglist, - s.mypromptbox, - spr, - }, - --s.mytasklist, -- Middle widget - nil, - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - spr, - arrl_ld, - wibox.container.background(cpuicon, theme.bg_focus), - wibox.container.background(cpu_widget({ - width = 70, - step_width = 2, - step_spacing = 0, - color = '#a71dbf', - }), theme.bg_focus), - arrl_dl, - memicon, - mem.widget, - ram_widget(), - --volicon, - --theme.volume.widget, - arrl_ld, - wibox.container.background(volicon, theme.bg_focus), - wibox.container.background(theme.volume.widget, theme.bg_focus), - arrl_dl, - -- memicon, - -- mem.widget, - weathericon, - weather_widget ({ - api_key='8f182658370a173d8c0a6d5bb499590f', - coordinates = {-25.833733, 28.168430}, - time_format_12h = true, - units = 'metric', - font_name = 'Carter One', - --icons = 'VitalyGorbachev', - show_hourly_forecast = true, - show_daily_forecast = true, - color = '#1dbfbc' - }), - arrl_ld, - wibox.container.background(baticon, theme.bg_focus), - wibox.container.background(bat.widget, theme.bg_focus), - arrl_dl, - neticon, - net.widget, - arrl_ld, - --wibox.container.background(fsicon, theme.bg_focus), - wibox.container.background(clock, theme.bg_focus), - -- arrl_dl, - -- baticon, - -- bat.widget, - -- arrl_ld, - -- wibox.container.background(neticon, theme.bg_focus), - -- wibox.container.background(net.widget, theme.bg_focus), - -- arrl_dl, - -- clock, - -- spr, - --arrl_ld, - s.mylayoutbox - }, - } -end - -return theme diff --git a/awesome/.config/awesome/themes/powerarrow-dark/wall.png b/awesome/.config/awesome/themes/powerarrow-dark/wall.png deleted file mode 100755 index 9d1118b..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/wall.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/README.md b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/README.md deleted file mode 100755 index e573bd4..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/README.md +++ /dev/null @@ -1,132 +0,0 @@ -# Weather widget - -[![GitHub issues by-label](https://img.shields.io/github/issues-raw/streetturtle/awesome-wm-widgets/weather)](https://github.com/streetturtle/awesome-wm-widgets/labels/weather) - - -Widget showing current, hourly and daily weather forecast. - -

- screenshot -

- -Widget consists of three sections: - - current weather, including humidity, wind speed, UV index - - hourly forecast for the next 24 hours - - daily forecast for the next five days - -## Customization - -It is possible to customize widget by providing a table with all or some of the following config parameters: - -| Name | Default | Description | -|---|---|---| -| coordinates | Required | Table with two elements: latitude and longitude, e.g. `{46.204400, 6.143200}` | -| api_key | Required | Get it [here](https://openweathermap.org/appid) | -| font_name | `beautiful.font:gsub("%s%d+$", "")` | **Name** of the font to use e.g. 'Play' | -| both_units_widget | false | Show temperature in both units - '28°C (83°F) | -| units | metric | `metric` for celsius, `imperial` for fahrenheit | -| show_hourly_forecast | false | Show hourly forecase section | -| time_format_12h |false | 12 or 24 hour format (13:00 - default or 1pm) | -| show_daily_forecast | false | Show daily forecast section | -| icon_pack_name | weather-underground-icons | Name of the icon pack, could be `weather-underground-icon` or `VitalyGorbachev` or create your own, more details below | -| icons_extension | `.svg` | File extension of icons in the pack | -| timeout | 120 | How often in seconds the widget refreshes | - - -### Icons: - -Widget comes with two predefined icon packs: - - - weather-underground-icons taken from [here](https://github.com/manifestinteractive/weather-underground-icons) - - VitalyGorbachev taken from [here](https://www.flaticon.com/authors/vitaly-gorbachev) - -To add your custom icons, create a folder with the pack name under `/icons` and use the folder name in widget's config. There should be 18 icons, preferably 128x128 minimum. Icons should also respect the naming convention, please check widget's source. - -### Examples: - - -#### Custom font, icons - -![example1](./screenshots/example1.png) - -```lua -weather_curl_widget({ - api_key='', - coordinates = {45.5017, -73.5673}, - time_format_12h = true, - units = 'imperial', - both_units_widget = true, - font_name = 'Carter One', - icons = 'VitalyGorbachev', - show_hourly_forecast = true, - show_daily_forecast = true, -}), -``` - -#### Only current weather - -![example2](./screenshots/example2.png) - -```lua -weather_curl_widget({ - api_key='', - coordinates = {45.5017, -73.5673}, -}), -``` - - - -## Installation - -1. Download json parser for lua from [github.com/rxi/json.lua](https://github.com/rxi/json.lua) and place it under **~/.config/awesome/** (don't forget to star a repo ): - - ```bash - wget -P ~/.config/awesome/ https://raw.githubusercontent.com/rxi/json.lua/master/json.lua - ``` - -1. Clone this repo under **~/.config/awesome/**: - - ```bash - git clone https://github.com/streetturtle/awesome-wm-widgets.git ~/.config/awesome/ - ``` - -1. Get Open Weather Map app id here: [openweathermap.org/appid](https://openweathermap.org/appid). - -1. Require weather widget at the beginning of **rc.lua**: - - ```lua - local weather_widget = require("awesome-wm-widgets.weather-widget.weather") - ``` - -1. Add widget to the tasklist: - - ```lua - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - ... - --default - weather_widget({ - api_key='', - coordinates = {45.5017, -73.5673}, - }), - , - --customized - weather_curl_widget({ - api_key='', - coordinates = {45.5017, -73.5673}, - time_format_12h = true, - units = 'imperial', - both_units_widget = true, - font_name = 'Carter One', - icons = 'VitalyGorbachev', - show_hourly_forecast = true, - show_daily_forecast = true, - }), - ... - ``` - - -## How it works - -TBW diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/broken-clouds-night.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/broken-clouds-night.svg deleted file mode 100755 index 8b7fc48..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/broken-clouds-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/broken-clouds.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/broken-clouds.svg deleted file mode 100755 index d42ea59..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/broken-clouds.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/clear-sky-night.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/clear-sky-night.svg deleted file mode 100755 index 44f096c..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/clear-sky-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/clear-sky.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/clear-sky.svg deleted file mode 100755 index dc82163..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/clear-sky.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/few-clouds-night.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/few-clouds-night.svg deleted file mode 100755 index 8b7fc48..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/few-clouds-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/few-clouds.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/few-clouds.svg deleted file mode 100755 index d42ea59..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/few-clouds.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/mist-night.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/mist-night.svg deleted file mode 100755 index 960b07d..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/mist-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/mist.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/mist.svg deleted file mode 100755 index 770f8d7..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/mist.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/rain-night.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/rain-night.svg deleted file mode 100755 index 11ecf00..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/rain-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/rain.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/rain.svg deleted file mode 100755 index 11ecf00..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/rain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/scattered-clouds-night.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/scattered-clouds-night.svg deleted file mode 100755 index 8b7fc48..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/scattered-clouds-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/scattered-clouds.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/scattered-clouds.svg deleted file mode 100755 index d42ea59..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/scattered-clouds.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/shower-rain-night.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/shower-rain-night.svg deleted file mode 100755 index 4d1897c..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/shower-rain-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/shower-rain.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/shower-rain.svg deleted file mode 100755 index 4d1897c..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/shower-rain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/snow-night.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/snow-night.svg deleted file mode 100755 index bee891e..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/snow-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/snow.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/snow.svg deleted file mode 100755 index e2ea140..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/snow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/thunderstorm-night.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/thunderstorm-night.svg deleted file mode 100755 index 1813197..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/thunderstorm-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/thunderstorm.svg b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/thunderstorm.svg deleted file mode 100755 index 44a733c..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/VitalyGorbachev/thunderstorm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/broken-clouds-night.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/broken-clouds-night.png deleted file mode 100755 index 061d1cd..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/broken-clouds-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/broken-clouds.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/broken-clouds.png deleted file mode 100755 index 5967d92..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/broken-clouds.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/clear-sky-night.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/clear-sky-night.png deleted file mode 100755 index cc40d0f..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/clear-sky-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/clear-sky.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/clear-sky.png deleted file mode 100755 index acf8e5c..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/clear-sky.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/few-clouds-night.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/few-clouds-night.png deleted file mode 100755 index 9c34fab..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/few-clouds-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/few-clouds.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/few-clouds.png deleted file mode 100755 index 7580fc5..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/few-clouds.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/mist-night.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/mist-night.png deleted file mode 100755 index 102142a..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/mist-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/mist.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/mist.png deleted file mode 100755 index 102142a..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/mist.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/rain-night.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/rain-night.png deleted file mode 100755 index 49f0903..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/rain-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/rain.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/rain.png deleted file mode 100755 index 49f0903..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/rain.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/scattered-clouds-night.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/scattered-clouds-night.png deleted file mode 100755 index 63cb1b2..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/scattered-clouds-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/scattered-clouds.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/scattered-clouds.png deleted file mode 100755 index 63cb1b2..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/scattered-clouds.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/shower-rain-night.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/shower-rain-night.png deleted file mode 100755 index 49f0903..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/shower-rain-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/shower-rain.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/shower-rain.png deleted file mode 100755 index 49f0903..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/shower-rain.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/snow-night.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/snow-night.png deleted file mode 100755 index 0a7f006..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/snow-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/snow.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/snow.png deleted file mode 100755 index 0a7f006..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/snow.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/thunderstorm-night.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/thunderstorm-night.png deleted file mode 100755 index 2102104..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/thunderstorm-night.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/thunderstorm.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/thunderstorm.png deleted file mode 100755 index 2102104..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/icons/weather-underground-icons/thunderstorm.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/screenshots/example1.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/screenshots/example1.png deleted file mode 100755 index 7074faa..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/screenshots/example1.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/screenshots/example2.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/screenshots/example2.png deleted file mode 100755 index 857274b..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/screenshots/example2.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/screenshots/weather-widget.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/screenshots/weather-widget.png deleted file mode 100755 index c7fc37e..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/screenshots/weather-widget.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/weather-widget.png b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/weather-widget.png deleted file mode 100755 index 177b350..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/weather-widget.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/weather.json b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/weather.json deleted file mode 100755 index 4a18714..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/weather.json +++ /dev/null @@ -1,1224 +0,0 @@ -{ - "lat": 33.44, - "lon": -94.04, - "timezone": "America/Chicago", - "timezone_offset": -18000, - "current": { - "dt": 1594490161, - "sunrise": 1594466108, - "sunset": 1594517275, - "temp": 32.69, - "feels_like": 36.81, - "pressure": 1017, - "humidity": 59, - "dew_point": 23.63, - "uvi": 7.94, - "clouds": 40, - "visibility": 16093, - "wind_speed": 2.1, - "wind_deg": 250, - "weather": [ - { - "id": 802, - "main": "Clear Sky", - "description": "clear sky", - "icon": "01d" - } - ] - }, - "hourly": [ - { - "dt": 1594486800, - "temp": 32.69, - "feels_like": 36.4, - "pressure": 1017, - "humidity": 59, - "dew_point": 23.63, - "clouds": 40, - "wind_speed": 2.68, - "wind_deg": 242, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594490400, - "temp": 33.38, - "feels_like": 37.27, - "pressure": 1017, - "humidity": 59, - "dew_point": 24.27, - "clouds": 21, - "wind_speed": 2.97, - "wind_deg": 248, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ] - }, - { - "dt": 1594494000, - "temp": 34.44, - "feels_like": 38.38, - "pressure": 1015, - "humidity": 55, - "dew_point": 24.09, - "clouds": 28, - "wind_speed": 2.74, - "wind_deg": 254, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594497600, - "temp": 35.32, - "feels_like": 39.58, - "pressure": 1014, - "humidity": 53, - "dew_point": 24.28, - "clouds": 18, - "wind_speed": 2.45, - "wind_deg": 260, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ] - }, - { - "dt": 1594501200, - "temp": 35.57, - "feels_like": 39.73, - "pressure": 1013, - "humidity": 52, - "dew_point": 24.19, - "clouds": 16, - "wind_speed": 2.52, - "wind_deg": 259, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ] - }, - { - "dt": 1594504800, - "temp": 35.34, - "feels_like": 39.82, - "pressure": 1012, - "humidity": 55, - "dew_point": 25.07, - "clouds": 13, - "wind_speed": 2.68, - "wind_deg": 256, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ] - }, - { - "dt": 1594508400, - "temp": 34.85, - "feels_like": 40.34, - "pressure": 1012, - "humidity": 61, - "dew_point": 26.36, - "clouds": 10, - "wind_speed": 2.42, - "wind_deg": 249, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594512000, - "temp": 33.39, - "feels_like": 39.08, - "pressure": 1012, - "humidity": 67, - "dew_point": 26.53, - "clouds": 9, - "wind_speed": 2.34, - "wind_deg": 246, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594515600, - "temp": 30.82, - "feels_like": 35.85, - "pressure": 1012, - "humidity": 73, - "dew_point": 25.61, - "clouds": 0, - "wind_speed": 2.35, - "wind_deg": 240, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594519200, - "temp": 29.56, - "feels_like": 33.64, - "pressure": 1012, - "humidity": 73, - "dew_point": 24.34, - "clouds": 0, - "wind_speed": 2.65, - "wind_deg": 227, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594522800, - "temp": 28.72, - "feels_like": 32.55, - "pressure": 1012, - "humidity": 75, - "dew_point": 23.97, - "clouds": 0, - "wind_speed": 2.7, - "wind_deg": 223, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594526400, - "temp": 27.79, - "feels_like": 31.42, - "pressure": 1012, - "humidity": 77, - "dew_point": 23.56, - "clouds": 0, - "wind_speed": 2.61, - "wind_deg": 211, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594530000, - "temp": 27.27, - "feels_like": 30.91, - "pressure": 1012, - "humidity": 79, - "dew_point": 23.39, - "clouds": 0, - "wind_speed": 2.54, - "wind_deg": 226, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594533600, - "temp": 27.17, - "feels_like": 30.72, - "pressure": 1012, - "humidity": 79, - "dew_point": 23.23, - "clouds": 0, - "wind_speed": 2.58, - "wind_deg": 213, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594537200, - "temp": 26.91, - "feels_like": 30.06, - "pressure": 1012, - "humidity": 78, - "dew_point": 22.95, - "clouds": 0, - "wind_speed": 2.79, - "wind_deg": 225, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594540800, - "temp": 26.57, - "feels_like": 29.76, - "pressure": 1011, - "humidity": 79, - "dew_point": 22.68, - "clouds": 33, - "wind_speed": 2.63, - "wind_deg": 217, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03n" - } - ] - }, - { - "dt": 1594544400, - "temp": 26.39, - "feels_like": 28.98, - "pressure": 1011, - "humidity": 78, - "dew_point": 22.36, - "clouds": 56, - "wind_speed": 3.19, - "wind_deg": 191, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04n" - } - ] - }, - { - "dt": 1594548000, - "temp": 25.97, - "feels_like": 29.15, - "pressure": 1011, - "humidity": 79, - "dew_point": 22.12, - "clouds": 67, - "wind_speed": 2.2, - "wind_deg": 211, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04n" - } - ] - }, - { - "dt": 1594551600, - "temp": 25.6, - "feels_like": 28.65, - "pressure": 1012, - "humidity": 79, - "dew_point": 21.77, - "clouds": 72, - "wind_speed": 2.12, - "wind_deg": 257, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04n" - } - ] - }, - { - "dt": 1594555200, - "temp": 25.25, - "feels_like": 29.31, - "pressure": 1012, - "humidity": 84, - "dew_point": 22.42, - "clouds": 74, - "wind_speed": 1.18, - "wind_deg": 276, - "weather": [ - { - "id": 500, - "main": "Rain", - "description": "light rain", - "icon": "10d" - } - ], - "rain": { - "1h": 0.66 - } - }, - { - "dt": 1594558800, - "temp": 26.51, - "feels_like": 31.02, - "pressure": 1013, - "humidity": 82, - "dew_point": 23.22, - "clouds": 91, - "wind_speed": 1.19, - "wind_deg": 227, - "weather": [ - { - "id": 500, - "main": "Rain", - "description": "light rain", - "icon": "10d" - } - ], - "rain": { - "1h": 0.5 - } - }, - { - "dt": 1594562400, - "temp": 27.99, - "feels_like": 31.34, - "pressure": 1012, - "humidity": 75, - "dew_point": 23.26, - "clouds": 87, - "wind_speed": 2.82, - "wind_deg": 223, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594566000, - "temp": 29.6, - "feels_like": 32.28, - "pressure": 1012, - "humidity": 67, - "dew_point": 23.02, - "clouds": 63, - "wind_speed": 3.51, - "wind_deg": 236, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594569600, - "temp": 31.12, - "feels_like": 33.49, - "pressure": 1011, - "humidity": 62, - "dew_point": 23.22, - "clouds": 52, - "wind_speed": 4.08, - "wind_deg": 239, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594573200, - "temp": 32.66, - "feels_like": 35.05, - "pressure": 1011, - "humidity": 58, - "dew_point": 23.6, - "clouds": 46, - "wind_speed": 4.31, - "wind_deg": 238, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594576800, - "temp": 34.15, - "feels_like": 36.59, - "pressure": 1011, - "humidity": 54, - "dew_point": 23.74, - "clouds": 40, - "wind_speed": 4.4, - "wind_deg": 236, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594580400, - "temp": 35.24, - "feels_like": 37.8, - "pressure": 1010, - "humidity": 51, - "dew_point": 23.83, - "clouds": 0, - "wind_speed": 4.27, - "wind_deg": 246, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594584000, - "temp": 35.73, - "feels_like": 38.39, - "pressure": 1009, - "humidity": 50, - "dew_point": 23.92, - "clouds": 0, - "wind_speed": 4.23, - "wind_deg": 262, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594587600, - "temp": 35.89, - "feels_like": 38.87, - "pressure": 1008, - "humidity": 51, - "dew_point": 24.29, - "clouds": 0, - "wind_speed": 4.17, - "wind_deg": 267, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594591200, - "temp": 35.63, - "feels_like": 39.46, - "pressure": 1008, - "humidity": 55, - "dew_point": 25.31, - "clouds": 0, - "wind_speed": 3.85, - "wind_deg": 266, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594594800, - "temp": 35, - "feels_like": 39.97, - "pressure": 1007, - "humidity": 61, - "dew_point": 26.37, - "clouds": 0, - "wind_speed": 3.3, - "wind_deg": 262, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594598400, - "temp": 33.25, - "feels_like": 38.23, - "pressure": 1007, - "humidity": 66, - "dew_point": 26.08, - "clouds": 0, - "wind_speed": 2.98, - "wind_deg": 259, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594602000, - "temp": 30.86, - "feels_like": 35.71, - "pressure": 1008, - "humidity": 72, - "dew_point": 25.37, - "clouds": 0, - "wind_speed": 2.44, - "wind_deg": 254, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ] - }, - { - "dt": 1594605600, - "temp": 29.71, - "feels_like": 34.14, - "pressure": 1008, - "humidity": 72, - "dew_point": 24.24, - "clouds": 0, - "wind_speed": 2.07, - "wind_deg": 246, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594609200, - "temp": 29.09, - "feels_like": 33.6, - "pressure": 1009, - "humidity": 73, - "dew_point": 23.92, - "clouds": 0, - "wind_speed": 1.65, - "wind_deg": 239, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594612800, - "temp": 28.41, - "feels_like": 33.33, - "pressure": 1009, - "humidity": 75, - "dew_point": 23.77, - "clouds": 0, - "wind_speed": 0.9, - "wind_deg": 301, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594616400, - "temp": 27.65, - "feels_like": 31.94, - "pressure": 1010, - "humidity": 79, - "dew_point": 23.7, - "clouds": 0, - "wind_speed": 1.9, - "wind_deg": 342, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594620000, - "temp": 26.81, - "feels_like": 30.18, - "pressure": 1010, - "humidity": 78, - "dew_point": 22.81, - "clouds": 0, - "wind_speed": 2.39, - "wind_deg": 13, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594623600, - "temp": 25.86, - "feels_like": 28.37, - "pressure": 1010, - "humidity": 75, - "dew_point": 21.3, - "clouds": 0, - "wind_speed": 2.45, - "wind_deg": 41, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594627200, - "temp": 24.94, - "feels_like": 26.96, - "pressure": 1010, - "humidity": 75, - "dew_point": 20.36, - "clouds": 0, - "wind_speed": 2.53, - "wind_deg": 49, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594630800, - "temp": 23.94, - "feels_like": 25.44, - "pressure": 1010, - "humidity": 78, - "dew_point": 19.9, - "clouds": 2, - "wind_speed": 3.05, - "wind_deg": 56, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01n" - } - ] - }, - { - "dt": 1594634400, - "temp": 23.22, - "feels_like": 25.05, - "pressure": 1011, - "humidity": 81, - "dew_point": 19.94, - "clouds": 14, - "wind_speed": 2.51, - "wind_deg": 65, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02n" - } - ] - }, - { - "dt": 1594638000, - "temp": 22.87, - "feels_like": 24.56, - "pressure": 1011, - "humidity": 81, - "dew_point": 19.61, - "clouds": 17, - "wind_speed": 2.48, - "wind_deg": 74, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02n" - } - ] - }, - { - "dt": 1594641600, - "temp": 22.82, - "feels_like": 24.7, - "pressure": 1012, - "humidity": 83, - "dew_point": 19.8, - "clouds": 29, - "wind_speed": 2.44, - "wind_deg": 63, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ] - }, - { - "dt": 1594645200, - "temp": 23.84, - "feels_like": 25.88, - "pressure": 1013, - "humidity": 80, - "dew_point": 20.21, - "clouds": 100, - "wind_speed": 2.48, - "wind_deg": 62, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594648800, - "temp": 25, - "feels_like": 27, - "pressure": 1013, - "humidity": 75, - "dew_point": 20.37, - "clouds": 100, - "wind_speed": 2.59, - "wind_deg": 67, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594652400, - "temp": 26.18, - "feels_like": 27.69, - "pressure": 1012, - "humidity": 73, - "dew_point": 21.06, - "clouds": 100, - "wind_speed": 3.79, - "wind_deg": 101, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ] - }, - { - "dt": 1594656000, - "temp": 28.36, - "feels_like": 30.56, - "pressure": 1012, - "humidity": 69, - "dew_point": 22.32, - "clouds": 83, - "wind_speed": 3.66, - "wind_deg": 128, - "weather": [ - { - "id": 803, - "main": "Clouds", - "description": "broken clouds", - "icon": "04d" - } - ] - } - ], - "daily": [ - { - "dt": 1594490400, - "sunrise": 1594466108, - "sunset": 1594517275, - "temp": { - "day": 33.38, - "min": 27.17, - "max": 34.96, - "night": 27.17, - "eve": 33.35, - "morn": 32.69 - }, - "feels_like": { - "day": 37.27, - "night": 30.72, - "eve": 39.01, - "morn": 36.67 - }, - "pressure": 1017, - "humidity": 59, - "dew_point": 24.27, - "wind_speed": 2.97, - "wind_deg": 248, - "weather": [ - { - "id": 801, - "main": "Clouds", - "description": "few clouds", - "icon": "02d" - } - ], - "clouds": 21, - "uvi": 11.94 - }, - { - "dt": 1594576800, - "sunrise": 1594552543, - "sunset": 1594603655, - "temp": { - "day": 34.15, - "min": 25.25, - "max": 35.89, - "night": 26.81, - "eve": 33.25, - "morn": 25.25 - }, - "feels_like": { - "day": 36.59, - "night": 30.18, - "eve": 38.23, - "morn": 29.31 - }, - "pressure": 1011, - "humidity": 54, - "dew_point": 23.74, - "wind_speed": 4.4, - "wind_deg": 236, - "weather": [ - { - "id": 500, - "main": "Rain", - "description": "light rain", - "icon": "10d" - } - ], - "clouds": 40, - "rain": 1.16, - "uvi": 11.61 - }, - { - "dt": 1594663200, - "sunrise": 1594638978, - "sunset": 1594690034, - "temp": { - "day": 29.22, - "min": 22.82, - "max": 29.22, - "night": 26.71, - "eve": 28.98, - "morn": 22.82 - }, - "feels_like": { - "day": 34.31, - "night": 28.82, - "eve": 34.45, - "morn": 24.7 - }, - "pressure": 1012, - "humidity": 72, - "dew_point": 23.66, - "wind_speed": 0.74, - "wind_deg": 287, - "weather": [ - { - "id": 804, - "main": "Clouds", - "description": "overcast clouds", - "icon": "04d" - } - ], - "clouds": 85, - "uvi": 12.72 - }, - { - "dt": 1594749600, - "sunrise": 1594725414, - "sunset": 1594776411, - "temp": { - "day": 33.67, - "min": 24.06, - "max": 35.68, - "night": 25.94, - "eve": 32.24, - "morn": 24.06 - }, - "feels_like": { - "day": 35.84, - "night": 27.78, - "eve": 35.66, - "morn": 27.28 - }, - "pressure": 1012, - "humidity": 50, - "dew_point": 21.95, - "wind_speed": 3.45, - "wind_deg": 183, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ], - "clouds": 9, - "uvi": 11.67 - }, - { - "dt": 1594836000, - "sunrise": 1594811851, - "sunset": 1594862786, - "temp": { - "day": 32.79, - "min": 24.61, - "max": 35.24, - "night": 26.42, - "eve": 31.72, - "morn": 24.61 - }, - "feels_like": { - "day": 34.67, - "night": 28.57, - "eve": 35.11, - "morn": 27.47 - }, - "pressure": 1014, - "humidity": 53, - "dew_point": 22.04, - "wind_speed": 3.97, - "wind_deg": 208, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ], - "clouds": 35, - "uvi": 11.55 - }, - { - "dt": 1594922400, - "sunrise": 1594898288, - "sunset": 1594949160, - "temp": { - "day": 33.89, - "min": 24.07, - "max": 35.5, - "night": 26.61, - "eve": 32.58, - "morn": 24.07 - }, - "feels_like": { - "day": 35.74, - "night": 29.39, - "eve": 36.52, - "morn": 27.33 - }, - "pressure": 1015, - "humidity": 49, - "dew_point": 22.01, - "wind_speed": 3.81, - "wind_deg": 225, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ], - "clouds": 29, - "uvi": 11.67 - }, - { - "dt": 1595008800, - "sunrise": 1594984726, - "sunset": 1595035532, - "temp": { - "day": 34.95, - "min": 24.45, - "max": 36.42, - "night": 26.97, - "eve": 33.81, - "morn": 24.45 - }, - "feels_like": { - "day": 38.11, - "night": 29.69, - "eve": 38.22, - "morn": 26.84 - }, - "pressure": 1016, - "humidity": 50, - "dew_point": 23.17, - "wind_speed": 2.94, - "wind_deg": 230, - "weather": [ - { - "id": 802, - "main": "Clouds", - "description": "scattered clouds", - "icon": "03d" - } - ], - "clouds": 46, - "uvi": 11.86 - }, - { - "dt": 1595095200, - "sunrise": 1595071164, - "sunset": 1595121903, - "temp": { - "day": 35.47, - "min": 24.4, - "max": 37.04, - "night": 28.18, - "eve": 34.23, - "morn": 24.4 - }, - "feels_like": { - "day": 38.15, - "night": 30.61, - "eve": 38.67, - "morn": 26.95 - }, - "pressure": 1015, - "humidity": 46, - "dew_point": 22.36, - "wind_speed": 2.93, - "wind_deg": 238, - "weather": [ - { - "id": 800, - "main": "Clear", - "description": "clear sky", - "icon": "01d" - } - ], - "clouds": 2, - "uvi": 11.67 - } - ] -} \ No newline at end of file diff --git a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/weather.lua b/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/weather.lua deleted file mode 100755 index 3d3b8e0..0000000 --- a/awesome/.config/awesome/themes/powerarrow-dark/weather-widget/weather.lua +++ /dev/null @@ -1,468 +0,0 @@ -------------------------------------------------- --- Weather Widget based on the OpenWeatherMap --- https://openweathermap.org/ --- --- @author Pavel Makhov --- @copyright 2020 Pavel Makhov -------------------------------------------------- -local awful = require("awful") -local watch = require("awful.widget.watch") -local json = require("json") -local naughty = require("naughty") -local wibox = require("wibox") -local gears = require("gears") -local beautiful = require("beautiful") - -local HOME_DIR = os.getenv("HOME") -local WIDGET_DIR = HOME_DIR .. '/.config/awesome/awesome-wm-widgets/weather-widget' -local GET_FORECAST_CMD = [[bash -c "curl -s --show-error -X GET '%s'"]] - -local function show_warning(message) - naughty.notify { - preset = naughty.config.presets.critical, - title = 'Weather Widget', - text = message - } -end - -local weather_widget = {} -local warning_shown = false -local notification -local tooltip = awful.tooltip { - mode = 'outside', - preferred_positions = {'bottom'} -} - -local weather_popup = awful.popup { - ontop = true, - visible = false, - shape = gears.shape.rounded_rect, - border_width = 1, - border_color = beautiful.bg_focus, - maximum_width = 400, - offset = {y = 5}, - widget = {} -} - ---- Maps openWeatherMap icon name to file name w/o extension -local icon_map = { - ["01d"] = "clear-sky", - ["02d"] = "few-clouds", - ["03d"] = "scattered-clouds", - ["04d"] = "broken-clouds", - ["09d"] = "shower-rain", - ["10d"] = "rain", - ["11d"] = "thunderstorm", - ["13d"] = "snow", - ["50d"] = "mist", - ["01n"] = "clear-sky-night", - ["02n"] = "few-clouds-night", - ["03n"] = "scattered-clouds-night", - ["04n"] = "broken-clouds-night", - ["09n"] = "shower-rain-night", - ["10n"] = "rain-night", - ["11n"] = "thunderstorm-night", - ["13n"] = "snow-night", - ["50n"] = "mist-night" -} - ---- Return wind direction as a string -local function to_direction(degrees) - -- Ref: https://www.campbellsci.eu/blog/convert-wind-directions - if degrees == nil then return "Unknown dir" end - local directions = { - "N", "NNE", "NE", "ENE", "E", "ESE", "SE", "SSE", "S", "SSW", "SW", - "WSW", "W", "WNW", "NW", "NNW", "N" - } - return directions[math.floor((degrees % 360) / 22.5) + 1] -end - ---- Convert degrees Celsius to Fahrenheit -local function celsius_to_fahrenheit(c) return c * 9 / 5 + 32 end - --- Convert degrees Fahrenheit to Celsius -local function fahrenheit_to_celsius(f) return (f - 32) * 5 / 9 end - -local function gen_temperature_str(temp, fmt_str, show_other_units, units) - local temp_str = string.format(fmt_str, temp) - local s = temp_str .. '°' .. (units == 'metric' and 'C' or 'F') - - if (show_other_units) then - local temp_conv, units_conv - if (units == 'metric') then - temp_conv = celsius_to_fahrenheit(temp) - units_conv = 'F' - else - temp_conv = fahrenheit_to_celsius(temp) - units_conv = 'C' - end - - local temp_conv_str = string.format(fmt_str, temp_conv) - s = s .. ' ' .. '(' .. temp_conv_str .. '°' .. units_conv .. ')' - end - return s -end - -local function uvi_index_color(uvi) - local color - if uvi >= 0 and uvi < 3 then color = '#A3BE8C' - elseif uvi >= 3 and uvi < 6 then color = '#EBCB8B' - elseif uvi >= 6 and uvi < 8 then color = '#D08770' - elseif uvi >= 8 and uvi < 11 then color = '#BF616A' - elseif uvi >= 11 then color = '#B48EAD' - end - - return '' .. uvi .. '' -end - -local function worker(args) - - local args = args or {} - - --- Validate required parameters - if args.coordinates == nil or args.api_key == nil then - show_warning('Required parameters are not set: ' .. - (args.coordinates == nil and 'coordinates' or '') .. - (args.api_key == nil and ', api_key ' or '')) - return - end - - local coordinates = args.coordinates - local api_key = args.api_key - local font_name = args.font_name or beautiful.font:gsub("%s%d+$", "") - local units = args.units or 'metric' - local time_format_12h = args.time_format_12h - local both_units_widget = args.both_units_widget or false - local show_hourly_forecast = args.show_hourly_forecast - local show_daily_forecast = args.show_daily_forecast - local icon_pack_name = args.icons or 'weather-underground-icons' - local icons_extension = args.icons_extension or '.png' - local timeout = args.timeout or 120 - - local owm_one_cal_api = - ('https://api.openweathermap.org/data/2.5/onecall' .. - '?lat=' .. coordinates[1] .. '&lon=' .. coordinates[2] .. '&appid=' .. api_key .. - '&units=' .. units .. '&exclude=minutely' .. - (show_hourly_forecast == false and ',hourly' or '') .. - (show_daily_forecast == false and ',daily' or '')) - - weather_widget = wibox.widget { - { - { - id = 'icon', - resize = true, - widget = wibox.widget.imagebox - }, - valign = 'center', - widget = wibox.container.place, - }, - { - id = 'txt', - widget = wibox.widget.textbox - }, - layout = wibox.layout.fixed.horizontal, - set_image = function(self, path) - self:get_children_by_id('icon')[1].image = path - end, - set_text = function(self, text) - self:get_children_by_id('txt')[1].text = text - end, - is_ok = function(self, is_ok) - if is_ok then - self:get_children_by_id('icon')[1]:set_opacity(1) - self:get_children_by_id('icon')[1]:emit_signal('widget:redraw_needed') - else - self:get_children_by_id('icon')[1]:set_opacity(0.2) - self:get_children_by_id('icon')[1]:emit_signal('widget:redraw_needed') - end - end - } - - local current_weather_widget = wibox.widget { - { - { - { - id = 'icon', - resize = true, - forced_width = 128, - forced_height = 128, - widget = wibox.widget.imagebox - }, - align = 'center', - widget = wibox.container.place - }, - { - id = 'description', - font = font_name .. ' 10', - align = 'center', - widget = wibox.widget.textbox - }, - forced_width = 128, - layout = wibox.layout.align.vertical - }, - { - { - { - id = 'temp', - font = font_name .. ' 36', - widget = wibox.widget.textbox - }, - { - id = 'feels_like_temp', - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - layout = wibox.layout.fixed.vertical - }, - { - { - id = 'wind', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - { - id = 'humidity', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - { - id = 'uv', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - expand = 'inside', - layout = wibox.layout.align.vertical - }, - spacing = 16, - forced_width = 150, - layout = wibox.layout.fixed.vertical - }, - forced_width = 300, - layout = wibox.layout.flex.horizontal, - update = function(self, weather) - self:get_children_by_id('icon')[1]:set_image(WIDGET_DIR .. '/icons/' .. icon_pack_name .. '/' .. icon_map[weather.weather[1].icon] .. icons_extension) - self:get_children_by_id('temp')[1]:set_text(gen_temperature_str(weather.temp, '%.0f', false, units)) - self:get_children_by_id('feels_like_temp')[1]:set_text('Feels like ' .. gen_temperature_str(weather.feels_like, '%.0f', false, units)) - self:get_children_by_id('description')[1]:set_text(weather.weather[1].description) - self:get_children_by_id('wind')[1]:set_markup('Wind: ' .. weather.wind_speed .. 'm/s (' .. to_direction(weather.wind_deg) .. ')') - self:get_children_by_id('humidity')[1]:set_markup('Humidity: ' .. weather.humidity .. '%') - self:get_children_by_id('uv')[1]:set_markup('UV: ' .. uvi_index_color(weather.uvi)) - end - } - - - local daily_forecast_widget = { - forced_width = 300, - layout = wibox.layout.flex.horizontal, - update = function(self, forecast, timezone_offset) - local count = #self - for i = 0, count do self[i]=nil end - for i, day in ipairs(forecast) do - if i > 5 then break end - local day_forecast = wibox.widget { - { - text = os.date('%a', tonumber(day.dt) + tonumber(timezone_offset)), - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - { - { - { - image = WIDGET_DIR .. '/icons/' .. icon_pack_name .. '/' .. icon_map[day.weather[1].icon] .. icons_extension, - resize = true, - forced_width = 48, - forced_height = 48, - widget = wibox.widget.imagebox - }, - align = 'center', - layout = wibox.container.place - }, - { - text = day.weather[1].description, - font = font_name .. ' 8', - align = 'center', - forced_height = 50, - widget = wibox.widget.textbox - }, - layout = wibox.layout.fixed.vertical - }, - { - { - text = gen_temperature_str(day.temp.day, '%.0f', false, units), - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - { - text = gen_temperature_str(day.temp.night, '%.0f', false, units), - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }, - layout = wibox.layout.fixed.vertical - }, - spacing = 8, - layout = wibox.layout.fixed.vertical - } - table.insert(self, day_forecast) - end - end - } - - local hourly_forecast_graph = wibox.widget { - step_width = 12, - color = '#EBCB8B', - background_color = beautiful.bg_normal, - forced_height = 100, - forced_width = 300, - widget = wibox.widget.graph, - set_max_value = function(self, new_max_value) - self.max_value = new_max_value - end, - set_min_value = function(self, new_min_value) - self.min_value = new_min_value - end - } - - local hourly_forecast_widget = { - layout = wibox.layout.fixed.vertical, - update = function(self, hourly) - local hours_below = { - id = 'hours', - layout = wibox.layout.flex.horizontal - } - local temp_below = { - id = 'temp', - forced_width = 300, - layout = wibox.layout.flex.horizontal - } - - local max_temp = -1000 - local min_temp = 1000 - local values = {} - for i, hour in ipairs(hourly) do - if i > 25 then break end - values[i] = hour.temp - if max_temp < hour.temp then max_temp = hour.temp end - if min_temp > hour.temp then min_temp = hour.temp end - if (i - 1) % 5 == 0 then - table.insert(hours_below, wibox.widget { - text = os.date(time_format_12h and '%I%p' or '%H:00', tonumber(hour.dt)), - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }) - table.insert(temp_below, wibox.widget { - markup = '' .. string.format('%.0f', hour.temp) .. '°' .. '', - align = 'center', - font = font_name .. ' 9', - widget = wibox.widget.textbox - }) - end - end - hourly_forecast_graph:set_max_value(max_temp) - hourly_forecast_graph:set_min_value(min_temp * 0.7) -- move graph a bit up - for i, value in ipairs(values) do - hourly_forecast_graph:add_value(value) - end - - local count = #self - for i = 0, count do self[i]=nil end - - table.insert(self, wibox.widget{ - { - hourly_forecast_graph, - reflection = {horizontal = true}, - widget = wibox.container.mirror - }, - { - temp_below, - valign = 'bottom', - widget = wibox.container.place - }, - id = 'graph', - layout = wibox.layout.stack - }) - table.insert(self, hours_below) - end - } - - local function update_widget(widget, stdout, stderr) - if stderr ~= '' then - if not warning_shown then - if ( - stderr ~= 'curl: (52) Empty reply from server' and - stderr ~= 'curl: (28) Failed to connect to api.openweathermap.org port 443: Connection timed out' and - stderr:find( - '^curl: %(18%) transfer closed with %d+ bytes remaining to read$' - ) ~= nil - ) then - show_warning(stderr) - end - warning_shown = true - widget:is_ok(false) - tooltip:add_to_object(widget) - - widget:connect_signal('mouse::enter', function() tooltip.text = stderr end) - end - return - end - - warning_shown = false - tooltip:remove_from_object(widget) - widget:is_ok(true) - - local result = json.decode(stdout) - - widget:set_image(WIDGET_DIR .. '/icons/' .. icon_pack_name .. '/' .. icon_map[result.current.weather[1].icon] .. icons_extension) - widget:set_text(gen_temperature_str(result.current.temp, '%.0f', both_units_widget, units)) - - current_weather_widget:update(result.current) - - local final_widget = { - current_weather_widget, - spacing = 16, - layout = wibox.layout.fixed.vertical - } - - if show_hourly_forecast then - hourly_forecast_widget:update(result.hourly) - table.insert(final_widget, hourly_forecast_widget) - end - - if show_daily_forecast then - daily_forecast_widget:update(result.daily, result.timezone_offset) - table.insert(final_widget, daily_forecast_widget) - end - - weather_popup:setup({ - { - final_widget, - margins = 10, - widget = wibox.container.margin - }, - bg = beautiful.bg_normal, - widget = wibox.container.background - }) - end - - weather_widget:buttons(awful.util.table.join(awful.button({}, 1, function() - if weather_popup.visible then - weather_popup.visible = not weather_popup.visible - else - weather_popup:move_next_to(mouse.current_widget_geometry) - end - end))) - - watch( - string.format(GET_FORECAST_CMD, owm_one_cal_api), - timeout, -- API limit is 1k req/day; day has 1440 min; every 2 min is good - update_widget, weather_widget - ) - - return weather_widget -end - -return setmetatable(weather_widget, {__call = function(_, ...) return worker(...) end}) diff --git a/awesome/.config/awesome/themes/powerarrow/binclock.lua b/awesome/.config/awesome/themes/powerarrow/binclock.lua deleted file mode 100755 index 68668ea..0000000 --- a/awesome/.config/awesome/themes/powerarrow/binclock.lua +++ /dev/null @@ -1,96 +0,0 @@ ---[[ - - Licensed under GNU General Public License v2 - * (c) 2017, Luca CPZ - * (c) 2013, romockee - ---]] - -local gears = require("gears") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi -local date = os.date -local ipairs = ipairs -local math = math -local select = select -local string = string - -local binclock = {} - -function binclock.dec2bin(num, bits) - local bits, t = bits or select(2, math.frexp(num)), {} - for b = bits, 1, -1 do - t[b] = math.fmod(num, 2) - num = (num - t[b]) / 2 - end - return t -end - -function binclock.paintdot(cr, val, shift) - local height = 0 - for _, bit in ipairs(binclock.dec2bin(val, 4)) do - if bit >= 1 then - cr:set_source(gears.color(binclock.color_active)) - else - cr:set_source(gears.color(binclock.color_inactive)) - end - cr:rectangle(shift, height, binclock.dotsize, binclock.dotsize) - cr:fill() - height = height + binclock.dotsize + binclock.step - end -end - -local function factory(args) - local args = args or {} - - binclock.width = args.width or dpi(42) - binclock.height = args.height or dpi(18) - binclock.show_seconds = args.show_seconds or false - binclock.color_active = args.color_active or "#CCCCCC" - binclock.color_inactive = args.color_inactive or "#444444" - binclock.dotsize = math.floor(binclock.height / 5) - binclock.step = math.floor(binclock.dotsize / 3) - - binclock.widget = wibox.widget { - fit = function(self, context, width, height) - return binclock.width, binclock.height - end, - draw = function(self, context, cr, width, height) - local t = date("*t") - - local hour = string.format("%02d", t.hour) - local min = string.format("%02d", t.min) - local sec = string.format("%02d", t.sec) - - local col_count = 4 - if binclock.show_seconds then - col_count = 6 - end - local step = math.floor((binclock.width - col_count * binclock.dotsize) / 8) - - binclock.paintdot(cr, string.sub(hour, 1, 1), step, 2) - binclock.paintdot(cr, string.sub(hour, 2, 2), binclock.dotsize + 2 * step) - - binclock.paintdot(cr, string.sub(min, 1, 1), binclock.dotsize * 2 + 4 * step) - binclock.paintdot(cr, string.sub(min, 2, 2), binclock.dotsize * 3 + 5 * step) - - if binclock.show_seconds then - binclock.paintdot(cr, string.sub(sec, 1, 1), binclock.dotsize * 4 + 7 * step) - binclock.paintdot(cr, string.sub(sec, 2, 2), binclock.dotsize * 5 + 8 * step) - end - end, - layout = wibox.widget.base.make_widget - } - - binclock.timer = gears.timer { - autostart = true, - timeout = binclock.show_seconds and 1 or 60, - callback = function() - binclock.widget:emit_signal("widget::redraw_needed") - end - } - - return binclock -end - -return factory diff --git a/awesome/.config/awesome/themes/powerarrow/icons/ac.png b/awesome/.config/awesome/themes/powerarrow/icons/ac.png deleted file mode 100755 index 453af4e..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/ac.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/awesome.png b/awesome/.config/awesome/themes/powerarrow/icons/awesome.png deleted file mode 100755 index 4cabb6c..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/awesome.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/battery.png b/awesome/.config/awesome/themes/powerarrow/icons/battery.png deleted file mode 100755 index 7dd78a5..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/battery.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/battery_empty.png b/awesome/.config/awesome/themes/powerarrow/icons/battery_empty.png deleted file mode 100755 index 763aa93..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/battery_empty.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/battery_low.png b/awesome/.config/awesome/themes/powerarrow/icons/battery_low.png deleted file mode 100755 index 626222f..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/battery_low.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/brightness.png b/awesome/.config/awesome/themes/powerarrow/icons/brightness.png deleted file mode 100755 index 030d524..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/brightness.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/cpu.png b/awesome/.config/awesome/themes/powerarrow/icons/cpu.png deleted file mode 100755 index c28a787..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/cpu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/floating.png b/awesome/.config/awesome/themes/powerarrow/icons/floating.png deleted file mode 100755 index 079fea4..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/floating.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/fwd.png b/awesome/.config/awesome/themes/powerarrow/icons/fwd.png deleted file mode 100755 index e9b875e..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/fwd.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/hdd.png b/awesome/.config/awesome/themes/powerarrow/icons/hdd.png deleted file mode 100755 index 8922eaa..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/hdd.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/mail.png b/awesome/.config/awesome/themes/powerarrow/icons/mail.png deleted file mode 100755 index be656ed..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/mail.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/mail_on.png b/awesome/.config/awesome/themes/powerarrow/icons/mail_on.png deleted file mode 100755 index ce8984f..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/mail_on.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/mem.png b/awesome/.config/awesome/themes/powerarrow/icons/mem.png deleted file mode 100755 index ee6d480..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/mem.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/net.png b/awesome/.config/awesome/themes/powerarrow/icons/net.png deleted file mode 100755 index 769bfec..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/net.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/next.png b/awesome/.config/awesome/themes/powerarrow/icons/next.png deleted file mode 100755 index 9a62593..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/next.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/note.png b/awesome/.config/awesome/themes/powerarrow/icons/note.png deleted file mode 100755 index 19866aa..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/note.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/note_on.png b/awesome/.config/awesome/themes/powerarrow/icons/note_on.png deleted file mode 100755 index aae5ca3..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/note_on.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/pacman.png b/awesome/.config/awesome/themes/powerarrow/icons/pacman.png deleted file mode 100755 index 575144a..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/pacman.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/pause.png b/awesome/.config/awesome/themes/powerarrow/icons/pause.png deleted file mode 100755 index d4546e6..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/pause.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/phones.png b/awesome/.config/awesome/themes/powerarrow/icons/phones.png deleted file mode 100755 index bec0e57..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/phones.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/play.png b/awesome/.config/awesome/themes/powerarrow/icons/play.png deleted file mode 100755 index b228f74..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/play.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/prev.png b/awesome/.config/awesome/themes/powerarrow/icons/prev.png deleted file mode 100755 index 4c4ca40..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/prev.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/rwd.png b/awesome/.config/awesome/themes/powerarrow/icons/rwd.png deleted file mode 100755 index ac3d6f4..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/rwd.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/scissors.png b/awesome/.config/awesome/themes/powerarrow/icons/scissors.png deleted file mode 100755 index 30f867d..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/scissors.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/square_sel.png b/awesome/.config/awesome/themes/powerarrow/icons/square_sel.png deleted file mode 100755 index 874a3a5..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/square_sel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/square_unsel.png b/awesome/.config/awesome/themes/powerarrow/icons/square_unsel.png deleted file mode 100755 index 979642f..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/square_unsel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/stop.png b/awesome/.config/awesome/themes/powerarrow/icons/stop.png deleted file mode 100755 index 207915b..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/stop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/submenu.png b/awesome/.config/awesome/themes/powerarrow/icons/submenu.png deleted file mode 100755 index e9a6b7c..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/submenu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/task.png b/awesome/.config/awesome/themes/powerarrow/icons/task.png deleted file mode 100755 index 962b51a..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/task.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/temp.png b/awesome/.config/awesome/themes/powerarrow/icons/temp.png deleted file mode 100755 index 7952de8..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/temp.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/tile.png b/awesome/.config/awesome/themes/powerarrow/icons/tile.png deleted file mode 100755 index 01fd1b5..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/tile.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/tilebottom.png b/awesome/.config/awesome/themes/powerarrow/icons/tilebottom.png deleted file mode 100755 index bff1f42..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/tilebottom.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/tileleft.png b/awesome/.config/awesome/themes/powerarrow/icons/tileleft.png deleted file mode 100755 index 205140a..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/tileleft.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/tiletop.png b/awesome/.config/awesome/themes/powerarrow/icons/tiletop.png deleted file mode 100755 index 148cb9b..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/tiletop.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/close_focus.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/close_focus.png deleted file mode 100755 index cccbadc..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/close_focus.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/close_normal.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/close_normal.png deleted file mode 100755 index cb0c3fa..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/close_normal.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_focus_active.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_focus_active.png deleted file mode 100755 index 77ea127..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_focus_inactive.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_focus_inactive.png deleted file mode 100755 index d254a73..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_normal_active.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_normal_active.png deleted file mode 100755 index c5ce3de..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_normal_inactive.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_normal_inactive.png deleted file mode 100755 index 850b602..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/floating_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_focus_active.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_focus_active.png deleted file mode 100755 index 9fc0483..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_focus_inactive.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_focus_inactive.png deleted file mode 100755 index f684470..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_normal_active.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_normal_active.png deleted file mode 100755 index 4aa4196..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_normal_inactive.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_normal_inactive.png deleted file mode 100755 index bfe01a3..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/maximized_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_focus_active.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_focus_active.png deleted file mode 100755 index 86e61b7..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_focus_inactive.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_focus_inactive.png deleted file mode 100755 index 286d439..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_normal_active.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_normal_active.png deleted file mode 100755 index fcee772..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_normal_inactive.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_normal_inactive.png deleted file mode 100755 index a628626..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/ontop_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_focus_active.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_focus_active.png deleted file mode 100755 index 5af45c1..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_focus_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_focus_inactive.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_focus_inactive.png deleted file mode 100755 index 22d7453..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_focus_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_normal_active.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_normal_active.png deleted file mode 100755 index aad079e..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_normal_active.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_normal_inactive.png b/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_normal_inactive.png deleted file mode 100755 index 5f3e655..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/icons/titlebar/sticky_normal_inactive.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/powerarrow/theme.lua b/awesome/.config/awesome/themes/powerarrow/theme.lua deleted file mode 100755 index 1fa1185..0000000 --- a/awesome/.config/awesome/themes/powerarrow/theme.lua +++ /dev/null @@ -1,400 +0,0 @@ ---[[ - - Powerarrow Awesome WM theme - github.com/lcpz - ---]] - -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local math, string, os = math, string, os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow" -theme.wallpaper = theme.dir .. "/wall.png" -theme.font = "Terminus 9" -theme.fg_normal = "#FEFEFE" -theme.fg_focus = "#32D6FF" -theme.fg_urgent = "#C83F11" -theme.bg_normal = "#222222" -theme.bg_focus = "#1E2320" -theme.bg_urgent = "#3F3F3F" -theme.taglist_fg_focus = "#00CCFF" -theme.tasklist_bg_focus = "#222222" -theme.tasklist_fg_focus = "#00CCFF" -theme.border_width = dpi(2) -theme.border_normal = "#3F3F3F" -theme.border_focus = "#6F6F6F" -theme.border_marked = "#CC9393" -theme.titlebar_bg_focus = "#3F3F3F" -theme.titlebar_bg_normal = "#3F3F3F" -theme.titlebar_bg_focus = theme.bg_focus -theme.titlebar_bg_normal = theme.bg_normal -theme.titlebar_fg_focus = theme.fg_focus -theme.menu_height = dpi(16) -theme.menu_width = dpi(140) -theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.awesome_icon = theme.dir .. "/icons/awesome.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.layout_tile = theme.dir .. "/icons/tile.png" -theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_fairv = theme.dir .. "/icons/fairv.png" -theme.layout_fairh = theme.dir .. "/icons/fairh.png" -theme.layout_spiral = theme.dir .. "/icons/spiral.png" -theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_max = theme.dir .. "/icons/max.png" -theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" -theme.layout_floating = theme.dir .. "/icons/floating.png" -theme.widget_ac = theme.dir .. "/icons/ac.png" -theme.widget_battery = theme.dir .. "/icons/battery.png" -theme.widget_battery_low = theme.dir .. "/icons/battery_low.png" -theme.widget_battery_empty = theme.dir .. "/icons/battery_empty.png" -theme.widget_brightness = theme.dir .. "/icons/brightness.png" -theme.widget_mem = theme.dir .. "/icons/mem.png" -theme.widget_cpu = theme.dir .. "/icons/cpu.png" -theme.widget_temp = theme.dir .. "/icons/temp.png" -theme.widget_net = theme.dir .. "/icons/net.png" -theme.widget_hdd = theme.dir .. "/icons/hdd.png" -theme.widget_music = theme.dir .. "/icons/note.png" -theme.widget_music_on = theme.dir .. "/icons/note_on.png" -theme.widget_music_pause = theme.dir .. "/icons/pause.png" -theme.widget_music_stop = theme.dir .. "/icons/stop.png" -theme.widget_vol = theme.dir .. "/icons/vol.png" -theme.widget_vol_low = theme.dir .. "/icons/vol_low.png" -theme.widget_vol_no = theme.dir .. "/icons/vol_no.png" -theme.widget_vol_mute = theme.dir .. "/icons/vol_mute.png" -theme.widget_mail = theme.dir .. "/icons/mail.png" -theme.widget_mail_on = theme.dir .. "/icons/mail_on.png" -theme.widget_task = theme.dir .. "/icons/task.png" -theme.widget_scissors = theme.dir .. "/icons/scissors.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true -theme.useless_gap = 0 -theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" -theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" -theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" -theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" -theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" -theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" -theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" -theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" -theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" -theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" - -local markup = lain.util.markup -local separators = lain.util.separators - --- Binary clock -local binclock = require("themes.powerarrow.binclock"){ - height = dpi(32), - show_seconds = true, - color_active = theme.fg_normal, - color_inactive = theme.bg_focus -} - --- Calendar -theme.cal = lain.widget.cal({ - --cal = "cal --color=always", - attach_to = { binclock.widget }, - notification_preset = { - font = "Terminus 10", - fg = theme.fg_normal, - bg = theme.bg_normal - } -}) - --- Taskwarrior -local task = wibox.widget.imagebox(theme.widget_task) -lain.widget.contrib.task.attach(task, { - -- do not colorize output - show_cmd = "task | sed -r 's/\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})?)?[mGK]//g'" -}) -task:buttons(my_table.join(awful.button({}, 1, lain.widget.contrib.task.prompt))) - --- Scissors (xsel copy and paste) -local scissors = wibox.widget.imagebox(theme.widget_scissors) -scissors:buttons(my_table.join(awful.button({}, 1, function() awful.spawn.with_shell("xsel | xsel -i -b") end))) - --- Mail IMAP check ---[[ commented because it needs to be set before use -local mailicon = wibox.widget.imagebox(theme.widget_mail) -mailicon:buttons(my_table.join(awful.button({ }, 1, function () awful.spawn(mail) end))) -theme.mail = lain.widget.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - if mailcount > 0 then - widget:set_text(" " .. mailcount .. " ") - mailicon:set_image(theme.widget_mail_on) - else - widget:set_text("") - mailicon:set_image(theme.widget_mail) - end - end -}) ---]] - --- ALSA volume -theme.volume = lain.widget.alsabar({ - --togglechannel = "IEC958,3", - notification_preset = { font = "Terminus 10", fg = theme.fg_normal }, -}) - --- MPD -local musicplr = awful.util.terminal .. " -title Music -g 130x34-320+16 -e ncmpcpp" -local mpdicon = wibox.widget.imagebox(theme.widget_music) -mpdicon:buttons(my_table.join( - awful.button({ modkey }, 1, function () awful.spawn.with_shell(musicplr) end), - awful.button({ }, 1, function () - os.execute("mpc prev") - theme.mpd.update() - end), - awful.button({ }, 2, function () - os.execute("mpc toggle") - theme.mpd.update() - end), - awful.button({ }, 3, function () - os.execute("mpc next") - theme.mpd.update() - end))) -theme.mpd = lain.widget.mpd({ - settings = function() - if mpd_now.state == "play" then - artist = " " .. mpd_now.artist .. " " - title = mpd_now.title .. " " - mpdicon:set_image(theme.widget_music_on) - widget:set_markup(markup.font(theme.font, markup("#FF8466", artist) .. " " .. title)) - elseif mpd_now.state == "pause" then - widget:set_markup(markup.font(theme.font, " mpd paused ")) - mpdicon:set_image(theme.widget_music_pause) - else - widget:set_text("") - mpdicon:set_image(theme.widget_music) - end - end -}) - --- MEM -local memicon = wibox.widget.imagebox(theme.widget_mem) -local mem = lain.widget.mem({ - settings = function() - widget:set_markup(markup.font(theme.font, " " .. mem_now.used .. "MB ")) - end -}) - --- CPU -local cpuicon = wibox.widget.imagebox(theme.widget_cpu) -local cpu = lain.widget.cpu({ - settings = function() - widget:set_markup(markup.font(theme.font, " " .. cpu_now.usage .. "% ")) - end -}) - ---[[ Coretemp (lm_sensors, per core) -local tempwidget = awful.widget.watch({awful.util.shell, '-c', 'sensors | grep Core'}, 30, -function(widget, stdout) - local temps = "" - for line in stdout:gmatch("[^\r\n]+") do - temps = temps .. line:match("+(%d+).*°C") .. "° " -- in Celsius - end - widget:set_markup(markup.font(theme.font, " " .. temps)) -end) ---]] --- Coretemp (lain, average) -local temp = lain.widget.temp({ - settings = function() - widget:set_markup(markup.font(theme.font, " " .. coretemp_now .. "°C ")) - end -}) ---]] -local tempicon = wibox.widget.imagebox(theme.widget_temp) - --- / fs -local fsicon = wibox.widget.imagebox(theme.widget_hdd) ---[[ commented because it needs Gio/Glib >= 2.54 -theme.fs = lain.widget.fs({ - notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Terminus 10" }, - settings = function() - local fsp = string.format(" %3.2f %s ", fs_now["/"].free, fs_now["/"].units) - widget:set_markup(markup.font(theme.font, fsp)) - end -}) ---]] - --- Battery -local baticon = wibox.widget.imagebox(theme.widget_battery) -local bat = lain.widget.bat({ - settings = function() - if bat_now.status and bat_now.status ~= "N/A" then - if bat_now.ac_status == 1 then - widget:set_markup(markup.font(theme.font, " AC ")) - baticon:set_image(theme.widget_ac) - return - elseif not bat_now.perc and tonumber(bat_now.perc) <= 5 then - baticon:set_image(theme.widget_battery_empty) - elseif not bat_now.perc and tonumber(bat_now.perc) <= 15 then - baticon:set_image(theme.widget_battery_low) - else - baticon:set_image(theme.widget_battery) - end - widget:set_markup(markup.font(theme.font, " " .. bat_now.perc .. "% ")) - else - widget:set_markup() - baticon:set_image(theme.widget_ac) - end - end -}) - --- Net -local neticon = wibox.widget.imagebox(theme.widget_net) -local net = lain.widget.net({ - settings = function() - widget:set_markup(markup.fontfg(theme.font, "#FEFEFE", " " .. net_now.received .. " ↓↑ " .. net_now.sent .. " ")) - end -}) - --- Brigtness -local brighticon = wibox.widget.imagebox(theme.widget_brightness) --- If you use xbacklight, comment the line with "light -G" and uncomment the line bellow --- local brightwidget = awful.widget.watch('xbacklight -get', 0.1, -local brightwidget = awful.widget.watch('light -G', 0.1, - function(widget, stdout, stderr, exitreason, exitcode) - local brightness_level = tonumber(string.format("%.0f", stdout)) - widget:set_markup(markup.font(theme.font, " " .. brightness_level .. "%")) -end) - --- Separators -local arrow = separators.arrow_left - -function theme.powerline_rl(cr, width, height) - local arrow_depth, offset = height/2, 0 - - -- Avoid going out of the (potential) clip area - if arrow_depth < 0 then - width = width + 2*arrow_depth - offset = -arrow_depth - end - - cr:move_to(offset + arrow_depth , 0 ) - cr:line_to(offset + width , 0 ) - cr:line_to(offset + width - arrow_depth , height/2 ) - cr:line_to(offset + width , height ) - cr:line_to(offset + arrow_depth , height ) - cr:line_to(offset , height/2 ) - - cr:close_path() -end - -local function pl(widget, bgcolor, padding) - return wibox.container.background(wibox.container.margin(widget, dpi(16), dpi(16)), bgcolor, theme.powerline_rl) -end - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - -- Create an imagebox widget which will contains an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(my_table.join( - awful.button({}, 1, function () awful.layout.inc( 1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function () awful.layout.inc(-1) end), - awful.button({}, 4, function () awful.layout.inc( 1) end), - awful.button({}, 5, function () awful.layout.inc(-1) end))) - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) - - -- Create the wibox - -- s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(16), bg = theme.bg_normal, fg = theme.fg_normal }) - - -- Add widgets to the wibox - -- s.mywibox:setup { - -- layout = wibox.layout.align.horizontal, - -- { -- Left widgets - -- layout = wibox.layout.fixed.horizontal, - -- --spr, - -- s.mytaglist, - -- s.mypromptbox, - -- spr, - -- }, - -- s.mytasklist, -- Middle widget - -- { -- Right widgets - -- layout = wibox.layout.fixed.horizontal, - -- wibox.widget.systray(), - -- wibox.container.margin(scissors, dpi(4), dpi(8)), - -- --[[ using shapes - -- pl(wibox.widget { mpdicon, theme.mpd.widget, layout = wibox.layout.align.horizontal }, "#343434"), - -- pl(task, "#343434"), - -- --pl(wibox.widget { mailicon, mail and theme.mail.widget, layout = wibox.layout.align.horizontal }, "#343434"), - -- pl(wibox.widget { memicon, mem.widget, layout = wibox.layout.align.horizontal }, "#777E76"), - -- pl(wibox.widget { cpuicon, cpu.widget, layout = wibox.layout.align.horizontal }, "#4B696D"), - -- pl(wibox.widget { tempicon, temp.widget, layout = wibox.layout.align.horizontal }, "#4B3B51"), - -- --pl(wibox.widget { fsicon, theme.fs and theme.fs.widget, layout = wibox.layout.align.horizontal }, "#CB755B"), - -- pl(wibox.widget { baticon, bat.widget, layout = wibox.layout.align.horizontal }, "#8DAA9A"), - -- pl(wibox.widget { neticon, net.widget, layout = wibox.layout.align.horizontal }, "#C0C0A2"), - -- pl(binclock.widget, "#777E76"), - -- --]] - -- -- using separators - -- arrow(theme.bg_normal, "#343434"), - -- wibox.container.background(wibox.container.margin(wibox.widget { mailicon, theme.mail and theme.mail.widget, layout = wibox.layout.align.horizontal }, dpi(4), dpi(7)), "#343434"), - -- arrow("#343434", theme.bg_normal), - -- wibox.container.background(wibox.container.margin(wibox.widget { mpdicon, theme.mpd.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(6)), theme.bg_focus), - -- arrow(theme.bg_normal, "#343434"), - -- wibox.container.background(wibox.container.margin(task, dpi(3), dpi(7)), "#343434"), - -- arrow("#343434", "#777E76"), - -- wibox.container.background(wibox.container.margin(wibox.widget { memicon, mem.widget, layout = wibox.layout.align.horizontal }, dpi(2), dpi(3)), "#777E76"), - -- arrow("#777E76", "#4B696D"), - -- wibox.container.background(wibox.container.margin(wibox.widget { cpuicon, cpu.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(4)), "#4B696D"), - -- arrow("#4B696D", "#4B3B51"), - -- wibox.container.background(wibox.container.margin(wibox.widget { tempicon, temp.widget, layout = wibox.layout.align.horizontal }, dpi(4), dpi(4)), "#4B3B51"), - -- arrow("#4B3B51", "#CB755B"), - -- wibox.container.background(wibox.container.margin(wibox.widget { fsicon, theme.fs and theme.fs.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(3)), "#CB755B"), - -- arrow("#CB755B", "#8DAA9A"), - -- wibox.container.background(wibox.container.margin(wibox.widget { baticon, bat.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(3)), "#8DAA9A"), - -- arrow("#8DAA9A", "#C0C0A2"), - -- wibox.container.background(wibox.container.margin(wibox.widget { nil, neticon, net.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(3)), "#C0C0A2"), - -- arrow("#C0C0A2", "#777E76"), - -- wibox.container.background(wibox.container.margin(binclock.widget, dpi(4), dpi(8)), "#777E76"), - -- arrow("#777E76", "alpha"), - -- --]] - -- s.mylayoutbox, - -- }, - -- } -end - -return theme diff --git a/awesome/.config/awesome/themes/powerarrow/wall.png b/awesome/.config/awesome/themes/powerarrow/wall.png deleted file mode 100755 index 0989db9..0000000 Binary files a/awesome/.config/awesome/themes/powerarrow/wall.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/rainbow/icons/awesome.png b/awesome/.config/awesome/themes/rainbow/icons/awesome.png deleted file mode 100755 index d99fd37..0000000 Binary files a/awesome/.config/awesome/themes/rainbow/icons/awesome.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/rainbow/icons/square_sel.png b/awesome/.config/awesome/themes/rainbow/icons/square_sel.png deleted file mode 100755 index 532719f..0000000 Binary files a/awesome/.config/awesome/themes/rainbow/icons/square_sel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/rainbow/icons/square_unsel.png b/awesome/.config/awesome/themes/rainbow/icons/square_unsel.png deleted file mode 100755 index 72dea5b..0000000 Binary files a/awesome/.config/awesome/themes/rainbow/icons/square_unsel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/rainbow/icons/submenu.png b/awesome/.config/awesome/themes/rainbow/icons/submenu.png deleted file mode 100755 index 26ab82a..0000000 Binary files a/awesome/.config/awesome/themes/rainbow/icons/submenu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/rainbow/theme.lua b/awesome/.config/awesome/themes/rainbow/theme.lua deleted file mode 100755 index 731ae0e..0000000 --- a/awesome/.config/awesome/themes/rainbow/theme.lua +++ /dev/null @@ -1,276 +0,0 @@ ---[[ - - Rainbow Awesome WM theme 2.0 - github.com/lcpz - ---]] - -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local os = os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.default_dir = require("awful.util").get_themes_dir() .. "default" -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/rainbow" -theme.wallpaper = theme.dir .. "/wall.png" -theme.font = "Terminus 10.5" -theme.fg_normal = "#9E9E9E" -theme.fg_focus = "#EBEBFF" -theme.bg_normal = "#242424" -theme.bg_focus = "#242424" -theme.fg_urgent = "#000000" -theme.bg_urgent = "#FFFFFF" -theme.border_width = dpi(1) -theme.border_normal = "#242424" -theme.border_focus = "#EBEBFF" -theme.taglist_fg_focus = "#EDEFFF" -theme.taglist_bg_focus = "#242424" -theme.menu_height = dpi(16) -theme.menu_width = dpi(140) -theme.ocol = "" -theme.tasklist_sticky = theme.ocol .. "[S]" -theme.tasklist_ontop = theme.ocol .. "[T]" -theme.tasklist_floating = theme.ocol .. "[F]" -theme.tasklist_maximized_horizontal = theme.ocol .. "[M] " -theme.tasklist_maximized_vertical = "" -theme.tasklist_disable_icon = true -theme.awesome_icon = theme.dir .."/icons/awesome.png" -theme.menu_submenu_icon = theme.dir .."/icons/submenu.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.useless_gap = dpi(8) -theme.layout_txt_tile = "[t]" -theme.layout_txt_tileleft = "[l]" -theme.layout_txt_tilebottom = "[b]" -theme.layout_txt_tiletop = "[tt]" -theme.layout_txt_fairv = "[fv]" -theme.layout_txt_fairh = "[fh]" -theme.layout_txt_spiral = "[s]" -theme.layout_txt_dwindle = "[d]" -theme.layout_txt_max = "[m]" -theme.layout_txt_fullscreen = "[F]" -theme.layout_txt_magnifier = "[M]" -theme.layout_txt_floating = "[*]" -theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png" -theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png" -theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png" -theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png" -theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png" -theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png" -theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png" -theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png" -theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png" -theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png" -theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png" -theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png" - --- lain related -theme.layout_txt_cascade = "[cascade]" -theme.layout_txt_cascadetile = "[cascadetile]" -theme.layout_txt_centerwork = "[centerwork]" -theme.layout_txt_termfair = "[termfair]" -theme.layout_txt_centerfair = "[centerfair]" - -local markup = lain.util.markup -local white = theme.fg_focus -local gray = theme.fg_normal - --- Textclock -local mytextclock = wibox.widget.textclock(markup(white, " %H:%M ")) -mytextclock.font = theme.font - --- Calendar -theme.cal = lain.widget.cal({ - attach_to = { mytextclock }, - notification_preset = { - font = "Terminus 11", - fg = white, - bg = theme.bg_normal - } -}) - --- Mail IMAP check ---[[ commented because it needs to be set before use -theme.mail = lain.widget.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail_notification_preset.fg = white - - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup.font(theme.font, markup(gray, mail) .. markup(white, count))) - end -}) ---]] - --- MPD -theme.mpd = lain.widget.mpd({ - settings = function() - mpd_notification_preset.fg = white - - artist = mpd_now.artist .. " " - title = mpd_now.title .. " " - - if mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - elseif mpd_now.state == "stop" then - artist = "" - title = "" - end - - widget:set_markup(markup.font(theme.font, markup(gray, artist) .. markup(white, title))) - end -}) - --- /home fs ---[[ commented because it needs Gio/Glib >= 2.54 -theme.fs = lain.widget.fs({ - notification_preset = { fg = white, bg = theme.bg_normal, font = "Terminus 10.5" }, - settings = function() - local fs_header, fs_p = "", "" - - if fs_now["/home"].percentage >= 90 then - fs_header = " Hdd " - fs_p = fs_now["/home"].percentage - end - - widget:set_markup(markup.font(theme.font, markup(gray, fs_header) .. markup(white, fs_p))) - end -}) ---]] - --- ALSA volume bar -theme.volume = lain.widget.alsabar({ - ticks = true, width = dpi(67), - notification_preset = { font = theme.font } -}) -theme.volume.tooltip.wibox.fg = theme.fg_focus -theme.volume.tooltip.wibox.font = theme.font -theme.volume.bar:buttons(my_table.join ( - awful.button({}, 1, function() - awful.spawn(string.format("%s -e alsamixer", terminal)) - end), - awful.button({}, 2, function() - os.execute(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel)) - theme.volume.update() - end), - awful.button({}, 3, function() - os.execute(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel)) - theme.volume.update() - end), - awful.button({}, 4, function() - os.execute(string.format("%s set %s 1%%+", theme.volume.cmd, theme.volume.channel)) - theme.volume.update() - end), - awful.button({}, 5, function() - os.execute(string.format("%s set %s 1%%-", theme.volume.cmd, theme.volume.channel)) - theme.volume.update() - end) -)) -local volumebg = wibox.container.background(theme.volume.bar, "#585858", gears.shape.rectangle) -local volumewidget = wibox.container.margin(volumebg, dpi(7), dpi(7), dpi(5), dpi(5)) - --- Weather -theme.weather = lain.widget.weather({ - city_id = 2643743, -- placeholder (London) - notification_preset = { font = theme.font, fg = white } -}) - --- Separators -local first = wibox.widget.textbox(markup.font("Terminus 4", " ")) -local spr = wibox.widget.textbox(' ') - -local function update_txt_layoutbox(s) - -- Writes a string representation of the current layout in a textbox widget - local txt_l = theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))] or "" - s.mytxtlayoutbox:set_text(txt_l) -end - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - - -- Textual layoutbox - s.mytxtlayoutbox = wibox.widget.textbox(theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))]) - awful.tag.attached_connect_signal(s, "property::selected", function () update_txt_layoutbox(s) end) - awful.tag.attached_connect_signal(s, "property::layout", function () update_txt_layoutbox(s) end) - s.mytxtlayoutbox:buttons(my_table.join( - awful.button({}, 1, function() awful.layout.inc(1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function() awful.layout.inc(-1) end), - awful.button({}, 4, function() awful.layout.inc(1) end), - awful.button({}, 5, function() awful.layout.inc(-1) end))) - - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = theme.bg_normal, fg = theme.fg_normal }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - first, - s.mytaglist, - spr, - s.mytxtlayoutbox, - --spr, - s.mypromptbox, - spr, - }, - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - spr, - theme.mpd.widget, - --theme.mail.widget, - --theme.fs.widget, - volumewidget, - mytextclock, - }, - } -end - -return theme diff --git a/awesome/.config/awesome/themes/rainbow/wall.png b/awesome/.config/awesome/themes/rainbow/wall.png deleted file mode 100755 index 6bed238..0000000 Binary files a/awesome/.config/awesome/themes/rainbow/wall.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/steamburn/icons/awesome.png b/awesome/.config/awesome/themes/steamburn/icons/awesome.png deleted file mode 100755 index 0306bdf..0000000 Binary files a/awesome/.config/awesome/themes/steamburn/icons/awesome.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/steamburn/icons/square_sel.png b/awesome/.config/awesome/themes/steamburn/icons/square_sel.png deleted file mode 100755 index 2bcabb8..0000000 Binary files a/awesome/.config/awesome/themes/steamburn/icons/square_sel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/steamburn/icons/square_unsel.png b/awesome/.config/awesome/themes/steamburn/icons/square_unsel.png deleted file mode 100755 index 14c4fe4..0000000 Binary files a/awesome/.config/awesome/themes/steamburn/icons/square_unsel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/steamburn/icons/submenu.png b/awesome/.config/awesome/themes/steamburn/icons/submenu.png deleted file mode 100755 index 12b97c6..0000000 Binary files a/awesome/.config/awesome/themes/steamburn/icons/submenu.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/steamburn/theme.lua b/awesome/.config/awesome/themes/steamburn/theme.lua deleted file mode 100755 index 098256c..0000000 --- a/awesome/.config/awesome/themes/steamburn/theme.lua +++ /dev/null @@ -1,275 +0,0 @@ ---[[ - - Steamburn Awesome WM theme 3.0 - github.com/lcpz - ---]] - -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local os = os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.zenburn_dir = require("awful.util").get_themes_dir() .. "zenburn" -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/steamburn" -theme.wallpaper = theme.dir .. "/wall.png" -theme.font = "Terminus 10.5" -theme.fg_normal = "#e2ccb0" -theme.fg_focus = "#d88166" -theme.fg_urgent = "#CC9393" -theme.bg_normal = "#140c0b" -theme.bg_focus = "#140c0b" -theme.bg_urgent = "#2a1f1e" -theme.border_width = dpi(1) -theme.border_normal = "#302627" -theme.border_focus = "#c2745b" -theme.border_marked = "#CC9393" -theme.taglist_fg_focus = "#d88166" -theme.tasklist_bg_focus = "#140c0b" -theme.tasklist_fg_focus = "#d88166" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.menu_height = dpi(16) -theme.menu_width = dpi(140) -theme.awesome_icon = theme.dir .."/icons/awesome.png" -theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.layout_txt_tile = "[t]" -theme.layout_txt_tileleft = "[l]" -theme.layout_txt_tilebottom = "[b]" -theme.layout_txt_tiletop = "[tt]" -theme.layout_txt_fairv = "[fv]" -theme.layout_txt_fairh = "[fh]" -theme.layout_txt_spiral = "[s]" -theme.layout_txt_dwindle = "[d]" -theme.layout_txt_max = "[m]" -theme.layout_txt_fullscreen = "[F]" -theme.layout_txt_magnifier = "[M]" -theme.layout_txt_floating = "[|]" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true -theme.useless_gap = dpi(0) -theme.titlebar_close_button_normal = theme.zenburn_dir.."/titlebar/close_normal.png" -theme.titlebar_close_button_focus = theme.zenburn_dir.."/titlebar/close_focus.png" -theme.titlebar_minimize_button_normal = theme.zenburn_dir.."/titlebar/minimize_normal.png" -theme.titlebar_minimize_button_focus = theme.zenburn_dir.."/titlebar/minimize_focus.png" -theme.titlebar_ontop_button_normal_inactive = theme.zenburn_dir.."/titlebar/ontop_normal_inactive.png" -theme.titlebar_ontop_button_focus_inactive = theme.zenburn_dir.."/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_active = theme.zenburn_dir.."/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_active = theme.zenburn_dir.."/titlebar/ontop_focus_active.png" -theme.titlebar_sticky_button_normal_inactive = theme.zenburn_dir.."/titlebar/sticky_normal_inactive.png" -theme.titlebar_sticky_button_focus_inactive = theme.zenburn_dir.."/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_active = theme.zenburn_dir.."/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_active = theme.zenburn_dir.."/titlebar/sticky_focus_active.png" -theme.titlebar_floating_button_normal_inactive = theme.zenburn_dir.."/titlebar/floating_normal_inactive.png" -theme.titlebar_floating_button_focus_inactive = theme.zenburn_dir.."/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_active = theme.zenburn_dir.."/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_active = theme.zenburn_dir.."/titlebar/floating_focus_active.png" -theme.titlebar_maximized_button_normal_inactive = theme.zenburn_dir.."/titlebar/maximized_normal_inactive.png" -theme.titlebar_maximized_button_focus_inactive = theme.zenburn_dir.."/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_active = theme.zenburn_dir.."/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_active = theme.zenburn_dir.."/titlebar/maximized_focus_active.png" - --- lain related -theme.layout_txt_termfair = "[termfair]" -theme.layout_txt_centerfair = "[centerfair]" - -local markup = lain.util.markup -local gray = "#94928F" - --- Textclock -local mytextclock = wibox.widget.textclock(" %H:%M ") -mytextclock.font = theme.font - --- Calendar -theme.cal = lain.widget.cal({ - attach_to = { mytextclock }, - notification_preset = { - font = "Terminus 11", - fg = theme.fg_normal, - bg = theme.bg_normal - } -}) - --- Mail IMAP check ---[[ commented because it needs to be set before use -theme.mail = lain.widget.imap({ - timeout = 180, - server = "server", - mail = "mail", - password = "keyring get mail", - settings = function() - mail = "" - count = "" - - if mailcount > 0 then - mail = "Mail " - count = mailcount .. " " - end - - widget:set_markup(markup(gray, mail) .. count) - end -}) ---]] - --- MPD -theme.mpd = lain.widget.mpd({ - settings = function() - artist = mpd_now.artist .. " " - title = mpd_now.title .. " " - - if mpd_now.state == "pause" then - artist = "mpd " - title = "paused " - elseif mpd_now.state == "stop" then - artist = "" - title = "" - end - - widget:set_markup(markup.font(theme.font, markup(gray, artist) .. title)) - end -}) - --- CPU -local cpu = lain.widget.sysload({ - settings = function() - widget:set_markup(markup.font(theme.font, markup(gray, " Cpu ") .. load_1 .. " ")) - end -}) - --- MEM -local mem = lain.widget.mem({ - settings = function() - widget:set_markup(markup.font(theme.font, markup(gray, " Mem ") .. mem_now.used .. " ")) - end -}) - --- /home fs ---[[ commented because it needs Gio/Glib >= 2.54 -theme.fs = lain.widget.fs({ - partition = "/home", - notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Terminus 10.5" }, -}) ---]] - --- Battery -local bat = lain.widget.bat({ - settings = function() - local perc = bat_now.perc - if bat_now.ac_status == 1 then perc = perc .. " Plug" end - widget:set_markup(markup.font(theme.font, markup(gray, " Bat ") .. perc .. " ")) - end -}) - --- Net checker -local net = lain.widget.net({ - settings = function() - if net_now.state == "up" then net_state = "On" - else net_state = "Off" end - widget:set_markup(markup.font(theme.font, markup(gray, " Net ") .. net_state .. " ")) - end -}) - --- ALSA volume -theme.volume = lain.widget.alsa({ - settings = function() - header = " Vol " - vlevel = volume_now.level - - if volume_now.status == "off" then - vlevel = vlevel .. "M " - else - vlevel = vlevel .. " " - end - - widget:set_markup(markup.font(theme.font, markup(gray, header) .. vlevel)) - end -}) - --- Weather -theme.weather = lain.widget.weather({ - city_id = 2643743, -- placeholder (London) -}) - --- Separators -local first = wibox.widget.textbox(markup.font("Terminus 4", " ")) -local spr = wibox.widget.textbox(' ') - -local function update_txt_layoutbox(s) - -- Writes a string representation of the current layout in a textbox widget - local txt_l = theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))] or "" - s.mytxtlayoutbox:set_text(txt_l) -end - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - - -- Textual layoutbox - s.mytxtlayoutbox = wibox.widget.textbox(theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))]) - awful.tag.attached_connect_signal(s, "property::selected", function () update_txt_layoutbox(s) end) - awful.tag.attached_connect_signal(s, "property::layout", function () update_txt_layoutbox(s) end) - s.mytxtlayoutbox:buttons(my_table.join( - awful.button({}, 1, function() awful.layout.inc(1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function() awful.layout.inc(-1) end), - awful.button({}, 4, function() awful.layout.inc(1) end), - awful.button({}, 5, function() awful.layout.inc(-1) end))) - - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons) - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18) }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - first, - s.mytaglist, - spr, - s.mytxtlayoutbox, - --spr, - s.mypromptbox, - spr, - }, - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - spr, - theme.mpd.widget, - --theme.mail.widget, - cpu.widget, - mem.widget, - bat.widget, - net.widget, - theme.volume.widget, - mytextclock - }, - } -end - -return theme diff --git a/awesome/.config/awesome/themes/steamburn/wall.png b/awesome/.config/awesome/themes/steamburn/wall.png deleted file mode 100755 index 57359d1..0000000 Binary files a/awesome/.config/awesome/themes/steamburn/wall.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/awesome.png b/awesome/.config/awesome/themes/vertex/icons/awesome.png deleted file mode 100755 index cbded64..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/awesome.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-000-charging.png b/awesome/.config/awesome/themes/vertex/icons/bat-000-charging.png deleted file mode 100755 index cc2abdd..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-000-charging.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-000.png b/awesome/.config/awesome/themes/vertex/icons/bat-000.png deleted file mode 100755 index 550d8f0..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-000.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-020-charging.png b/awesome/.config/awesome/themes/vertex/icons/bat-020-charging.png deleted file mode 100755 index bd5e788..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-020-charging.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-020.png b/awesome/.config/awesome/themes/vertex/icons/bat-020.png deleted file mode 100755 index c8525eb..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-020.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-040-charging.png b/awesome/.config/awesome/themes/vertex/icons/bat-040-charging.png deleted file mode 100755 index 5d20c11..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-040-charging.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-040.png b/awesome/.config/awesome/themes/vertex/icons/bat-040.png deleted file mode 100755 index ad378bf..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-040.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-060-charging.png b/awesome/.config/awesome/themes/vertex/icons/bat-060-charging.png deleted file mode 100755 index ea7c293..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-060-charging.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-060.png b/awesome/.config/awesome/themes/vertex/icons/bat-060.png deleted file mode 100755 index 5883885..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-060.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-080-charging.png b/awesome/.config/awesome/themes/vertex/icons/bat-080-charging.png deleted file mode 100755 index b633044..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-080-charging.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-080.png b/awesome/.config/awesome/themes/vertex/icons/bat-080.png deleted file mode 100755 index d3fb971..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-080.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-100-charging.png b/awesome/.config/awesome/themes/vertex/icons/bat-100-charging.png deleted file mode 100755 index f2d7419..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-100-charging.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-100.png b/awesome/.config/awesome/themes/vertex/icons/bat-100.png deleted file mode 100755 index 5852e69..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-100.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/bat-charged.png b/awesome/.config/awesome/themes/vertex/icons/bat-charged.png deleted file mode 100755 index bb6b657..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/bat-charged.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/ethernet-connected.png b/awesome/.config/awesome/themes/vertex/icons/ethernet-connected.png deleted file mode 100755 index 6894931..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/ethernet-connected.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/ethernet-disconnected.png b/awesome/.config/awesome/themes/vertex/icons/ethernet-disconnected.png deleted file mode 100755 index cfd73bb..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/ethernet-disconnected.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/panel.png b/awesome/.config/awesome/themes/vertex/icons/panel.png deleted file mode 100755 index 2f429e5..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/panel.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/volume-high.png b/awesome/.config/awesome/themes/vertex/icons/volume-high.png deleted file mode 100755 index 8fc8279..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/volume-high.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/volume-low.png b/awesome/.config/awesome/themes/vertex/icons/volume-low.png deleted file mode 100755 index 7a0682f..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/volume-low.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/volume-medium.png b/awesome/.config/awesome/themes/vertex/icons/volume-medium.png deleted file mode 100755 index 2b5c888..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/volume-medium.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/volume-muted-blocked.png b/awesome/.config/awesome/themes/vertex/icons/volume-muted-blocked.png deleted file mode 100755 index 6dea15b..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/volume-muted-blocked.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/volume-muted.png b/awesome/.config/awesome/themes/vertex/icons/volume-muted.png deleted file mode 100755 index 7d08ac9..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/volume-muted.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/volume-off.png b/awesome/.config/awesome/themes/vertex/icons/volume-off.png deleted file mode 100755 index 8a6d8c5..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/volume-off.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/wireless-disconnected.png b/awesome/.config/awesome/themes/vertex/icons/wireless-disconnected.png deleted file mode 100755 index f98d8b4..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/wireless-disconnected.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/wireless-full.png b/awesome/.config/awesome/themes/vertex/icons/wireless-full.png deleted file mode 100755 index 3f83dec..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/wireless-full.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/wireless-high.png b/awesome/.config/awesome/themes/vertex/icons/wireless-high.png deleted file mode 100755 index b3622ec..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/wireless-high.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/wireless-low.png b/awesome/.config/awesome/themes/vertex/icons/wireless-low.png deleted file mode 100755 index 3f1e740..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/wireless-low.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/wireless-medium.png b/awesome/.config/awesome/themes/vertex/icons/wireless-medium.png deleted file mode 100755 index 6bd0ec5..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/wireless-medium.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/icons/wireless-none.png b/awesome/.config/awesome/themes/vertex/icons/wireless-none.png deleted file mode 100755 index e47b478..0000000 Binary files a/awesome/.config/awesome/themes/vertex/icons/wireless-none.png and /dev/null differ diff --git a/awesome/.config/awesome/themes/vertex/theme.lua b/awesome/.config/awesome/themes/vertex/theme.lua deleted file mode 100755 index 0d2af1e..0000000 --- a/awesome/.config/awesome/themes/vertex/theme.lua +++ /dev/null @@ -1,468 +0,0 @@ ---[[ - - Vertex Awesome WM theme - github.com/lcpz - ---]] - -local gears = require("gears") -local lain = require("lain") -local awful = require("awful") -local wibox = require("wibox") -local dpi = require("beautiful.xresources").apply_dpi - -local math, string, tag, tonumber, type, os = math, string, tag, tonumber, type, os -local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility - -local theme = {} -theme.default_dir = require("awful.util").get_themes_dir() .. "default" -theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/vertex/icons" -theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/vertex/wall.png" -theme.font = "Roboto Bold 10" -theme.taglist_font = "FontAwesome 17" -theme.fg_normal = "#FFFFFF" -theme.fg_focus = "#6A95EB" -theme.bg_focus = "#303030" -theme.bg_focus2 = "#3762B8" -theme.bg_normal = "#242424" -theme.fg_urgent = "#CC9393" -theme.bg_urgent = "#006B8E" -theme.border_width = dpi(4) -theme.border_normal = "#252525" -theme.border_focus = "#7CA2EE" -theme.tooltip_border_color = theme.fg_focus -theme.tooltip_border_width = theme.border_width -theme.menu_height = dpi(24) -theme.menu_width = dpi(140) -theme.awesome_icon = theme.icon_dir .. "/awesome.png" -theme.taglist_squares_sel = gears.surface.load_from_shape(dpi(3), dpi(30), gears.shape.rectangle, theme.fg_focus) -theme.taglist_squares_unsel = gears.surface.load_from_shape(dpi(3), dpi(30), gears.shape.rectangle, theme.bg_focus2) -theme.panelbg = theme.icon_dir .. "/panel.png" -theme.bat000charging = theme.icon_dir .. "/bat-000-charging.png" -theme.bat000 = theme.icon_dir .. "/bat-000.png" -theme.bat020charging = theme.icon_dir .. "/bat-020-charging.png" -theme.bat020 = theme.icon_dir .. "/bat-020.png" -theme.bat040charging = theme.icon_dir .. "/bat-040-charging.png" -theme.bat040 = theme.icon_dir .. "/bat-040.png" -theme.bat060charging = theme.icon_dir .. "/bat-060-charging.png" -theme.bat060 = theme.icon_dir .. "/bat-060.png" -theme.bat080charging = theme.icon_dir .. "/bat-080-charging.png" -theme.bat080 = theme.icon_dir .. "/bat-080.png" -theme.bat100charging = theme.icon_dir .. "/bat-100-charging.png" -theme.bat100 = theme.icon_dir .. "/bat-100.png" -theme.batcharged = theme.icon_dir .. "/bat-charged.png" -theme.ethon = theme.icon_dir .. "/ethernet-connected.png" -theme.ethoff = theme.icon_dir .. "/ethernet-disconnected.png" -theme.volhigh = theme.icon_dir .. "/volume-high.png" -theme.vollow = theme.icon_dir .. "/volume-low.png" -theme.volmed = theme.icon_dir .. "/volume-medium.png" -theme.volmutedblocked = theme.icon_dir .. "/volume-muted-blocked.png" -theme.volmuted = theme.icon_dir .. "/volume-muted.png" -theme.voloff = theme.icon_dir .. "/volume-off.png" -theme.wifidisc = theme.icon_dir .. "/wireless-disconnected.png" -theme.wififull = theme.icon_dir .. "/wireless-full.png" -theme.wifihigh = theme.icon_dir .. "/wireless-high.png" -theme.wifilow = theme.icon_dir .. "/wireless-low.png" -theme.wifimed = theme.icon_dir .. "/wireless-medium.png" -theme.wifinone = theme.icon_dir .. "/wireless-none.png" -theme.layout_fairh = theme.default_dir.."/layouts/fairhw.png" -theme.layout_fairv = theme.default_dir.."/layouts/fairvw.png" -theme.layout_floating = theme.default_dir.."/layouts/floatingw.png" -theme.layout_magnifier = theme.default_dir.."/layouts/magnifierw.png" -theme.layout_max = theme.default_dir.."/layouts/maxw.png" -theme.layout_fullscreen = theme.default_dir.."/layouts/fullscreenw.png" -theme.layout_tilebottom = theme.default_dir.."/layouts/tilebottomw.png" -theme.layout_tileleft = theme.default_dir.."/layouts/tileleftw.png" -theme.layout_tile = theme.default_dir.."/layouts/tilew.png" -theme.layout_tiletop = theme.default_dir.."/layouts/tiletopw.png" -theme.layout_spiral = theme.default_dir.."/layouts/spiralw.png" -theme.layout_dwindle = theme.default_dir.."/layouts/dwindlew.png" -theme.layout_cornernw = theme.default_dir.."/layouts/cornernww.png" -theme.layout_cornerne = theme.default_dir.."/layouts/cornernew.png" -theme.layout_cornersw = theme.default_dir.."/layouts/cornersww.png" -theme.layout_cornerse = theme.default_dir.."/layouts/cornersew.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true -theme.useless_gap = dpi(10) -theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png" -theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png" -theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png" -theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png" -theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png" -theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png" -theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png" -theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png" -theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png" -theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png" -theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png" -theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png" - --- http://fontawesome.io/cheatsheet -awful.util.tagnames = { "", "", "", "", "", "", "", "" } - -local markup = lain.util.markup - --- Clock ---os.setlocale(os.getenv("LANG")) -- to localize the clock -local mytextclock = wibox.widget.textclock(markup("#FFFFFF", "%a %d %b, %H:%M")) -mytextclock.font = theme.font -theme.cal = lain.widget.cal({ - attach_to = { mytextclock }, - notification_preset = { - fg = "#FFFFFF", - bg = theme.bg_normal, - position = "top_middle", - font = "Monospace 10" - } -}) - --- Battery -local baticon = wibox.widget.imagebox(theme.bat000) -local battooltip = awful.tooltip({ - objects = { baticon }, - margin_leftright = dpi(15), - margin_topbottom = dpi(12) -}) -battooltip.wibox.fg = theme.fg_normal -battooltip.textbox.font = theme.font -battooltip.timeout = 0 -battooltip:set_shape(function(cr, width, height) - gears.shape.infobubble(cr, width, height, corner_radius, arrow_size, width - dpi(35)) -end) -local bat = lain.widget.bat({ - settings = function() - local index, perc = "bat", tonumber(bat_now.perc) or 0 - - if perc <= 7 then - index = index .. "000" - elseif perc <= 20 then - index = index .. "020" - elseif perc <= 40 then - index = index .. "040" - elseif perc <= 60 then - index = index .. "060" - elseif perc <= 80 then - index = index .. "080" - elseif perc <= 100 then - index = index .. "100" - end - - if bat_now.ac_status == 1 then - index = index .. "charging" - end - - baticon:set_image(theme[index]) - battooltip:set_markup(string.format("\n%s%%, %s", perc, bat_now.time)) - end -}) - --- MPD -theme.mpd = lain.widget.mpd({ - music_dir = "/mnt/storage/Downloads/Music", - settings = function() - if mpd_now.state == "play" then - title = mpd_now.title - artist = " " .. mpd_now.artist .. " " - elseif mpd_now.state == "pause" then - title = "mpd " - artist = "paused " - else - title = "" - artist = "" - end - - widget:set_markup(markup.font(theme.font, title .. markup(theme.fg_focus, artist))) - end -}) - --- ALSA volume -local volicon = wibox.widget.imagebox() -theme.volume = lain.widget.alsabar({ - --togglechannel = "IEC958,3", - notification_preset = { font = "Monospace 12", fg = theme.fg_normal }, - settings = function() - local index, perc = "", tonumber(volume_now.level) or 0 - - if volume_now.status == "off" then - index = "volmutedblocked" - else - if perc <= 5 then - index = "volmuted" - elseif perc <= 25 then - index = "vollow" - elseif perc <= 75 then - index = "volmed" - else - index = "volhigh" - end - end - - volicon:set_image(theme[index]) - end -}) -volicon:buttons(my_table.join ( - awful.button({}, 1, function() - awful.spawn(string.format("%s -e alsamixer", awful.util.terminal)) - end), - awful.button({}, 2, function() - os.execute(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel)) - theme.volume.notify() - end), - awful.button({}, 3, function() - os.execute(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel)) - theme.volume.notify() - end), - awful.button({}, 4, function() - os.execute(string.format("%s set %s 1%%+", theme.volume.cmd, theme.volume.channel)) - theme.volume.notify() - end), - awful.button({}, 5, function() - os.execute(string.format("%s set %s 1%%-", theme.volume.cmd, theme.volume.channel)) - theme.volume.notify() - end) -)) - --- Wifi carrier and signal strength -local wificon = wibox.widget.imagebox(theme.wifidisc) -local wifitooltip = awful.tooltip({ - objects = { wificon }, - margin_leftright = dpi(15), - margin_topbottom = dpi(15) -}) -wifitooltip.wibox.fg = theme.fg_normal -wifitooltip.textbox.font = theme.font -wifitooltip.timeout = 0 -wifitooltip:set_shape(function(cr, width, height) - gears.shape.infobubble(cr, width, height, corner_radius, arrow_size, width - dpi(120)) -end) -local mywifisig = awful.widget.watch( - { awful.util.shell, "-c", "awk 'NR==3 {printf(\"%d-%.0f\\n\",$2, $3*10/7)}' /proc/net/wireless; iw dev wlan0 link" }, - 2, - function(widget, stdout) - local carrier, perc = stdout:match("(%d)-(%d+)") - local tiptext = stdout:gsub("(%d)-(%d+)", ""):gsub("%s+$", "") - perc = tonumber(perc) - - if carrier == "1" or not perc then - wificon:set_image(theme.wifidisc) - wifitooltip:set_markup("No carrier") - else - if perc <= 5 then - wificon:set_image(theme.wifinone) - elseif perc <= 25 then - wificon:set_image(theme.wifilow) - elseif perc <= 50 then - wificon:set_image(theme.wifimed) - elseif perc <= 75 then - wificon:set_image(theme.wifihigh) - else - wificon:set_image(theme.wififull) - end - wifitooltip:set_markup(tiptext) - end - end -) -wificon:connect_signal("button::press", function() awful.spawn(string.format("%s -e wavemon", awful.util.terminal)) end) - --- Weather -theme.weather = lain.widget.weather({ - city_id = 2643743, -- placeholder (London) - notification_preset = { font = "Monospace 10" }, - settings = function() - units = math.floor(weather_now["main"]["temp"]) - widget:set_markup(" " .. markup.font(theme.font, units .. "°C") .. " ") - end -}) - --- Launcher -local mylauncher = awful.widget.button({image = theme.awesome_icon}) -mylauncher:connect_signal("button::press", function() awful.util.mymainmenu:toggle() end) - --- Separators -local space = wibox.widget.textbox(" ") -local rspace1 = wibox.widget.textbox() -local rspace0 = wibox.widget.textbox() -local rspace2 = wibox.widget.textbox() -local rspace3 = wibox.widget.textbox() -local tspace1 = wibox.widget.textbox() -tspace1.forced_width = dpi(18) -rspace1.forced_width = dpi(16) -rspace0.forced_width = dpi(18) -rspace2.forced_width = dpi(19) -rspace3.forced_width = dpi(21) - -local lspace1 = wibox.widget.textbox() -local lspace2 = wibox.widget.textbox() -local lspace3 = wibox.widget.textbox() -lspace1.forced_height = dpi(18) -lspace2.forced_height = dpi(10) -lspace3.forced_height = dpi(16) - -local barcolor = gears.color({ - type = "linear", - from = { 0, dpi(46) }, - to = { dpi(46), dpi(46) }, - stops = { {0, theme.bg_focus}, {0.9, theme.bg_focus2} } -}) - -local barcolor2 = gears.color({ - type = "linear", - from = { 0, dpi(46) }, - to = { dpi(46), dpi(46) }, - stops = { {0, "#323232"}, {1, theme.bg_normal} } -}) - -local dockshape = function(cr, width, height) - gears.shape.partially_rounded_rect(cr, width, height, false, true, true, false, 6) -end - -function theme.vertical_wibox(s) - -- Create the vertical wibox - s.dockheight = (35 * s.workarea.height)/100 - - s.myleftwibox = wibox({ screen = s, x=0, y=s.workarea.height/2 - s.dockheight/2, width = dpi(6), height = s.dockheight, fg = theme.fg_normal, bg = barcolor2, ontop = true, visible = true, type = "dock" }) - - if s.index > 1 and s.myleftwibox.y == 0 then - s.myleftwibox.y = screen[1].myleftwibox.y - end - - -- Add widgets to the vertical wibox - s.myleftwibox:setup { - layout = wibox.layout.align.vertical, - { - layout = wibox.layout.fixed.vertical, - lspace1, - s.mytaglist, - lspace2, - s.layoutb, - wibox.container.margin(mylauncher, dpi(5), dpi(8), dpi(13), dpi(0)), - }, - } - - -- Add toggling functionalities - s.docktimer = gears.timer{ timeout = 2 } - s.docktimer:connect_signal("timeout", function() - local s = awful.screen.focused() - s.myleftwibox.width = dpi(9) - s.layoutb.visible = false - mylauncher.visible = false - if s.docktimer.started then - s.docktimer:stop() - end - end) - tag.connect_signal("property::selected", function(t) - local s = t.screen or awful.screen.focused() - s.myleftwibox.width = dpi(38) - s.layoutb.visible = true - mylauncher.visible = true - gears.surface.apply_shape_bounding(s.myleftwibox, dockshape) - if not s.docktimer.started then - s.docktimer:start() - end - end) - - s.myleftwibox:connect_signal("mouse::leave", function() - local s = awful.screen.focused() - s.myleftwibox.width = dpi(9) - s.layoutb.visible = false - mylauncher.visible = false - end) - - s.myleftwibox:connect_signal("mouse::enter", function() - local s = awful.screen.focused() - s.myleftwibox.width = dpi(38) - s.layoutb.visible = true - mylauncher.visible = true - gears.surface.apply_shape_bounding(s.myleftwibox, dockshape) - end) -end - - -function theme.at_screen_connect(s) - -- Quake application - s.quake = lain.util.quake({ app = awful.util.terminal, border = theme.border_width }) - - -- If wallpaper is a function, call it with the screen - local wallpaper = theme.wallpaper - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, true) - - -- Tags - awful.tag(awful.util.tagnames, s, awful.layout.layouts) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - s.mypromptbox.bg = "#00000000" - - -- Create an imagebox widget which will contains an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(my_table.join( - awful.button({}, 1, function () awful.layout.inc( 1) end), - awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end), - awful.button({}, 3, function () awful.layout.inc(-1) end), - awful.button({}, 4, function () awful.layout.inc( 1) end), - awful.button({}, 5, function () awful.layout.inc(-1) end))) - s.layoutb = wibox.container.margin(s.mylayoutbox, dpi(8), dpi(11), dpi(3), dpi(3)) - - -- Create a taglist widget - s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons, { - font = theme.taglist_font, - shape = gears.shape.rectangle, - spacing = dpi(10), - square_unsel = theme.square_unsel, - bg_focus = barcolor - }, nil, wibox.layout.fixed.vertical()) - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.focused, awful.util.tasklist_buttons, { bg_focus = "#00000000" }) - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(25), bg = gears.color.create_png_pattern(theme.panelbg) }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - expand = "none", - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - s.mypromptbox, - tspace1, - s.mytasklist, - }, - { -- Middle widgets - layout = wibox.layout.flex.horizontal, - max_widget_size = 1500, - mytextclock - }, - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget { nil, nil, theme.mpd.widget, layout = wibox.layout.align.horizontal }, - rspace0, - theme.weather.icon, - theme.weather.widget, - rspace1, - wificon, - rspace0, - volicon, - rspace2, - baticon, - rspace3, - wibox.widget.systray(), - }, - } - - gears.timer.delayed_call(theme.vertical_wibox, s) -end - -return theme diff --git a/awesome/.config/awesome/themes/vertex/wall.png b/awesome/.config/awesome/themes/vertex/wall.png deleted file mode 100755 index 863b1bf..0000000 Binary files a/awesome/.config/awesome/themes/vertex/wall.png and /dev/null differ diff --git a/picom/.config/picom/picom.conf b/picom/.config/picom/picom.conf index 7e2fa3a..1f3c61b 100644 --- a/picom/.config/picom/picom.conf +++ b/picom/.config/picom/picom.conf @@ -304,7 +304,7 @@ backend = "glx"; # Enable/disable VSync. # vsync = false -vsync = true +vsync = false # Enable remote control via D-Bus. See the *D-BUS API* section below for more details. # dbus = false diff --git a/polybar/.config/polybar/config b/polybar/.config/polybar/config index 8e15186..2b9b069 100644 --- a/polybar/.config/polybar/config +++ b/polybar/.config/polybar/config @@ -30,8 +30,8 @@ alert = #FF0000 [bar/MainWithTray] width = ${env:width} offset-x = ${env:offsetx} -monitor = HDMI-1 -monitor-fallback =eDP-1 +monitor = HDMI-A-0 +monitor-fallback =eDP ;offset-y = ${env:y} ;width = 100% height = 27 @@ -70,7 +70,7 @@ cursor-scroll = ns-resize [bar/SeconderyWitNoTray] width = ${env:width} offset-x = ${env:offsetx} -monitor = eDP-1 +monitor = eDP ;offset-y = ${env:y} ;width = 100% height = 27 @@ -531,7 +531,7 @@ click-left = alacritty -e paru [module/light] type = custom/script exec = light -G | awk '{print int($float)}' -interval = 0 +interval = 1 format-prefix = " LIGHT " scroll-up = light -A 5 scroll-down = light -U 5 diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index 30615d7..5ec439d 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -142,6 +142,9 @@ config.set('content.javascript.enabled', True, 'qute://*/*') # Enabe dark made config.set("colors.webpage.darkmode.enabled", True) +# Spellcheck +config.set('spellcheck.languages', ["en-US"]) + import dracula.draw # Load existing settings made via :set diff --git a/qutebrowser/.config/qutebrowser/dracula/__pycache__/__init__.cpython-310.pyc b/qutebrowser/.config/qutebrowser/dracula/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..7aaa2dc Binary files /dev/null and b/qutebrowser/.config/qutebrowser/dracula/__pycache__/__init__.cpython-310.pyc differ diff --git a/qutebrowser/.config/qutebrowser/dracula/__pycache__/draw.cpython-310.pyc b/qutebrowser/.config/qutebrowser/dracula/__pycache__/draw.cpython-310.pyc new file mode 100644 index 0000000..f88a803 Binary files /dev/null and b/qutebrowser/.config/qutebrowser/dracula/__pycache__/draw.cpython-310.pyc differ diff --git a/rofi/.config/rofi/config.rasi b/rofi/.config/rofi/config.rasi index 608e3dd..975e628 100644 --- a/rofi/.config/rofi/config.rasi +++ b/rofi/.config/rofi/config.rasi @@ -1,13 +1,122 @@ -configuration { - show-icons: true; - icon-theme: "Papirus"; - cycle: true; - hide-scrollbar: true; - disable-history: false; - modi: "drun"; - display-drun: "apps"; - columns: 2; +/*Dracula theme based on the Purple official rofi theme*/ + +* { + font: "Jetbrains Mono 12"; + foreground: #f8f8f2; + background: #282a36; + active-background: #6272a4; + urgent-background: #ff5555; + selected-background: @active-background; + selected-urgent-background: @urgent-background; + selected-active-background: @active-background; + separatorcolor: @active-background; + bordercolor: @active-background; +} + +#window { + background-color: @background; + border: 1; + border-radius: 6; + border-color: @bordercolor; + padding: 5; +} +#mainbox { + border: 0; + padding: 0; +} +#message { + border: 1px dash 0px 0px ; + border-color: @separatorcolor; + padding: 1px ; +} +#textbox { + text-color: @foreground; +} +#listview { + fixed-height: 0; + border: 2px dash 0px 0px ; + border-color: @bordercolor; + spacing: 2px ; + scrollbar: false; + padding: 2px 0px 0px ; +} +#element { + border: 0; + padding: 1px ; +} +#element.normal.normal { + background-color: @background; + text-color: @foreground; +} +#element.normal.urgent { + background-color: @urgent-background; + text-color: @urgent-foreground; +} +#element.normal.active { + background-color: @active-background; + text-color: @foreground; +} +#element.selected.normal { + background-color: @selected-background; + text-color: @foreground; +} +#element.selected.urgent { + background-color: @selected-urgent-background; + text-color: @foreground; +} +#element.selected.active { + background-color: @selected-active-background; + text-color: @foreground; +} +#element.alternate.normal { + background-color: @background; + text-color: @foreground; +} +#element.alternate.urgent { + background-color: @urgent-background; + text-color: @foreground; +} +#element.alternate.active { + background-color: @active-background; + text-color: @foreground; +} +#scrollbar { + width: 2px ; + border: 0; + handle-width: 8px ; + padding: 0; +} +#sidebar { + border: 2px dash 0px 0px ; + border-color: @separatorcolor; +} +#button.selected { + background-color: @selected-background; + text-color: @foreground; +} +#inputbar { + spacing: 0; + text-color: @foreground; + padding: 1px ; +} +#case-indicator { + spacing: 0; + text-color: @foreground; +} +#entry { + spacing: 0; + text-color: @foreground; +} +#prompt { + spacing: 0; + text-color: @foreground; +} +#inputbar { + children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; +} +#textbox-prompt-colon { + expand: false; + str: ":"; + margin: 0px 0.3em 0em 0em ; + text-color: @foreground; } -//@theme "/home/$USER/.config/rofi-menus/colors-rofi-dark.rasi" -//@theme "/usr/share/rofi/themes/colors-rofi-dark.rasi" -@theme "/usr/share/rofi/themes/colors-rofi-dark.rasi" diff --git a/script/.config/script/mic-gain-fix.sh b/script/.config/script/mic-gain-fix.sh new file mode 100755 index 0000000..7d347d4 --- /dev/null +++ b/script/.config/script/mic-gain-fix.sh @@ -0,0 +1,8 @@ +#!/bin/sh +sleep 10 +while : +do + sleep 0.1 + pamixer --source 0 --set-volume 31; +done + diff --git a/script/.config/script/updateCount.sh b/script/.config/script/updateCount.sh index ab62053..92e31d3 100755 --- a/script/.config/script/updateCount.sh +++ b/script/.config/script/updateCount.sh @@ -1,6 +1,5 @@ #!/bin/bash -sleep 30 checkupdates > out.log 2>/dev/null if [ $? -eq 0 ] diff --git a/script/.config/script/waylock.sh b/script/.config/script/waylock.sh new file mode 100755 index 0000000..e703d39 --- /dev/null +++ b/script/.config/script/waylock.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +swayidle -w \ + timeout 900 'sudo systemctl suspend' \ + before-sleep 'swaylock -i $HOME/Pictures/Wallpapers/15.jpg --ring-color 8218c4 --key-hl-color 3e0c60' diff --git a/xmonad/.xmonad/xmonad b/xmonad/.xmonad/xmonad new file mode 100644 index 0000000..dab5526 --- /dev/null +++ b/xmonad/.xmonad/xmonad @@ -0,0 +1,518 @@ +--imports + +import XMonad +import Data.Monoid +import Data.List (sortBy) +import Data.Function (on) +--import XMonad.Hooks.StatusBar ( dynStatusBarStartup, dynStatusBarEventHook, multiPP ) +import XMonad.Hooks.DynamicLog +import XMonad.Hooks.StatusBar +import XMonad.Hooks.StatusBar.PP +import XMonad.Hooks.WindowSwallowing +import Control.Monad (forM_, join) +import Control.Monad (liftM2) +import System.Exit +import System.IO +import XMonad.Util.SpawnOnce +import XMonad.Util.Scratchpad +import XMonad.Hooks.ManageDocks +import XMonad.Util.Run +import XMonad.Hooks.EwmhDesktops +import XMonad.Hooks.ManageDocks +import XMonad.Util.NamedWindows (getName) +import XMonad.Layout.NoBorders +import XMonad.Layout.Spiral +import XMonad.Layout.ThreeColumns +import XMonad.Util.EZConfig +import XMonad.Layout.Spacing +import XMonad.Actions.UpdatePointer +import XMonad.Actions.SwapWorkspaces +import qualified XMonad.StackSet as W +import qualified Data.Map as M + + + +-- import qualified XMonad.Layout.IndependentScreens as XLI + +-- The preferred terminal program, which is used in a binding below and by +-- certain contrib modules. +-- +myTerminal = "alacritty" + +-- Whether focus follows the mouse pointer. +myFocusFollowsMouse :: Bool +myFocusFollowsMouse = True + +-- Whether clicking on a window to focus also passes the click to the window +myClickJustFocuses :: Bool +myClickJustFocuses = False + +-- Width of the window border in pixels. +-- +myBorderWidth = 3 + +-- modMask lets you specify which modkey you want to use. The default +-- is mod1Mask ("left alt"). You may also consider using mod3Mask +-- ("right alt"), which does not conflict with emacs keybindings. The +-- "windows key" is usually mod4Mask. +-- +myModMask = mod1Mask + +-- The default number of workspaces (virtual screens) and their names. +-- By default we use numeric strings, but any string may be used as a +-- workspace name. The number of workspaces is determined by the length +-- of this list. +-- +-- A tagging example: +-- +-- > workspaces = ["web", "irc", "code" ] ++ map show [4..9] +-- +myWorkspaces = ["1:MAIN","2:DEV","3:WWW","4:TERM","5:TEXT","6:FOLDER","7:SCHOOL","8:GAMES","9:MUSIC"] + +-- Border colors for unfocused and focused windows, respectively. +-- +myNormalBorderColor = "#1A1A1A" +myFocusedBorderColor = "#8218c4" + +-- Looks to see if focused window is floating and if it is the places it in the stack +-- else it makes it floating but as full screen +toggleFull = withFocused (\windowId -> do + { floats <- gets (W.floating . windowset); + if windowId `M.member` floats + then withFocused $ windows . W.sink + else withFocused $ windows . (flip W.float $ W.RationalRect 0 0 1 1) }) + + +------------------------------------------------------------------------ +-- Key bindings. Add, modify or remove key bindings here. +-- +myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ + + -- open configs + [ --((modm, xK_x ), spawn "alacritty -e nvim /home/$USER/.xmonad/xmonad.hs ; alacritty -e nvim /home/$USER/.config/polybar/config") + + --toggle avoid struts + + -- open browser + ((modm, xK_b ), spawn "qutebrowser") + + -- open messinging app (ferdi) + ,((modm, xK_c ), spawn "qalculate-gtk") + + -- open PcmanFM + , ((modm, xK_f ), spawn "pcmanfm") + + -- open mailspring + , ((modm, xK_e ), spawn "mailspring") + + -- open kde colour picker + , ((modm, xK_p ), spawn "kcolorchooser") + + -- Open youtube music + ,((modm, xK_m ), spawn "youtube-music") + + -- Volume control + , ((0,0x1008ff11), spawn "pamixer --allow-boost -d 5") --Folume down + , ((0,0x1008ff13), spawn "pamixer --allow-boost -i 5") --Folume up + , ((0,0x1008ff12), spawn "pamixer -t") --Mute Toggle + , ((0,0x1008ffb2), spawn "pactl set-source-mute @DEFAULT_SOURCE@ toggle") --Mic Toggle + + --Brightness control + , ((0,0x1008ff02), spawn "light -A 10") --Brightness Up + , ((0,0x1008ff03), spawn "light -U 10") --Brightness Up + + --Media Control + , ((0,0x1008ff14), spawn "playerctl play-pause") -- Play/Pause + , ((0,0x1008ff16), spawn "playerctl previous") -- Play/Pause + , ((0,0x1008ff17), spawn "playerctl next") -- Play/Pause + + -- Take screenshot + , ((0,0xff61), spawn "flameshot gui") + + -- Lock screen + , ((mod4Mask, xK_l), spawn "betterlockscreen --lock") + , ((mod4Mask, xK_F5), spawn "/home/$USER/.config/script/refreshXmonad.sh") + , ((mod4Mask, xK_F6), spawn "/home/$USER/.config/script/toggelTuchpad.sh") + , ((mod4Mask, xK_F7), spawn "/home/$USER/.config/script/ariplaneMode.sh") + , ((mod4Mask, xK_F10), spawn "arandr") + + + -- launch a terminal + , ((modm, xK_Return), spawn $ XMonad.terminal conf) + , ((modm, xK_backslash), scratchpadSpawnActionTerminal "alacritty -class scratchpad") + + -- launch rofi + , ((modm, xK_d ), spawn "rofi -no-lazy-greb -show drun -icon-theme 'Papirus' -show-icons") + + -- launch a scrachpad + , ((modm .|. shiftMask, xK_s ), spawn "alacritty --class scratchpad") + + + -- close focused window + , ((modm, xK_q ), kill) + + -- Rotate through the available layout algorithms + , ((modm, xK_space ), sendMessage NextLayout) + + -- Reset the layouts on the current workspace to default + , ((modm .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf) + + -- Resize viewed windows to the correct size + , ((modm, xK_n ), refresh) + + -- Move focus to the next window + , ((modm, xK_Tab ), windows W.focusDown) + + -- Move focus to the next window + , ((modm, xK_j ), windows W.focusDown) + + -- Move focus to the previous window + , ((modm, xK_k ), windows W.focusUp ) + + -- Move focus to the master window + , ((mod4Mask, xK_m ), windows W.focusMaster ) + + -- Swap the focused window and the master window + , ((modm .|. shiftMask, xK_m ), windows W.swapMaster) + + -- Swap the focused window with the next window + , ((modm .|. shiftMask, xK_j ), windows W.swapDown ) + + -- Swap the focused window with the previous window + , ((modm .|. shiftMask, xK_k ), windows W.swapUp ) + + -- Shrink the master area + , ((modm .|. controlMask, xK_h ), sendMessage Shrink) + + -- Expand the master area + , ((modm .|. controlMask, xK_l ), sendMessage Expand) + + -- toggle between full screen and tieling + , ((modm, xK_t ), toggleFull) + + -- Increment the number of windows in the master area + , ((modm , xK_comma ), sendMessage (IncMasterN 1)) + + -- Deincrement the number of windows in the master area + , ((modm , xK_period), sendMessage (IncMasterN (-1))) + + -- Toggle the status bar gap + -- Use this binding with avoidStruts from Hooks.ManageDocks. + -- See also the statusBar function from Hooks.DynamicLog. + -- + -- , ((modm , xK_b ), sendMessage ToggleStruts) + + -- Quit xmonad + , ((modm .|. shiftMask, xK_q ), io (exitWith ExitSuccess)) + + -- Restart xmonad + , ((modm .|. shiftMask, xK_r ), spawn "xmonad --recompile; xmonad --restart") + + -- Run xmessage with a summary of the default keybindings (useful for beginners) + , ((modm .|. shiftMask, xK_slash ), spawn ("echo \"" ++ help ++ "\" | xmessage -file -")) + ] + ++ + + -- + -- mod-[1..9], Switch to workspace N + -- mod-shift-[1..9], Move client to workspace N + -- + [((m .|. modm, k), windows $ f i) + | (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_9] + , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]] + ++ + + -- + -- mod-{w,e,r}, Switch to physical/Xinerama screens 1, 2, or 3 + -- mod-shift-{w,e,r}, Move client to screen 1, 2, or 3 + -- + [((m .|. modm, key), screenWorkspace sc >>= flip whenJust (windows . f)) + | (key, sc) <- zip [xK_l, xK_h] [0..] + , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]] + + -- swap workspaces between desktosa + -- ++ + -- [((modm .|. controlMask, k), windows $ swapWithCurrent i) + -- | (i, k) <- zip workspaces [xK_1 ..]] + + + +------------------------------------------------------------------------ +-- Mouse bindings: default actions bound to mouse events +-- +myMouseBindings (XConfig {XMonad.modMask = modm}) = M.fromList $ + + -- mod-button1, Set the window to floating mode and move by dragging + [ ((modm, button1), (\w -> focus w >> mouseMoveWindow w + >> windows W.shiftMaster)) + + -- mod-button2, Raise the window to the top of the stack + , ((modm, button2), (\w -> focus w >> windows W.shiftMaster)) + + -- mod-button3, Set the window to floating mode and resize by dragging + , ((modm, button3), (\w -> focus w >> mouseResizeWindow w + >> windows W.shiftMaster)) + + -- you may also bind events to the mouse scroll wheel (button4 and button5) + ] + +------------------------------------------------------------------------ +-- Layouts: + +-- You can specify and transform your layouts by modifying these values. +-- If you change layout bindings be sure to use 'mod-shift-space' after +-- restarting (with 'mod-q') to reset your layout state to the new +-- defaults, as xmonad preserves your old layout settings by default. +-- +-- The available layouts. Note that each layout is separated by |||, +-- which denotes layout choice. +-- +mySpacing = spacingRaw False -- Only for >1 window + -- The bottom edge seems to look narrower than it is + (Border 30 3 3 3) -- Size of screen edge gaps + True -- Enable screen edge gaps + (Border 3 3 3 3) -- Size of window gaps + True -- Enable window gaps + + + +myLayout = mySpacing $ avoidStruts ( tiled ||| Mirror tiled ||| noBorders Full ||| spiral (6/7) ||| ThreeCol 1 (3/100) (1/2)) + where + -- default tiling algorithm partitions the screen into two panes + tiled = Tall nmaster delta ratio + + -- The default number of windows in the master pane + nmaster = 1 + + -- Default proportion of screen occupied by master pane + ratio = 1/2 + + -- Percent of screen to increment by when resizing panes + delta = 3/100 + +------------------------------------------------------------------------ +-- Window rules: + +-- Execute arbitrary actions and WindowSet manipulations when managing +-- a new window. You can use this to, for example, always float a +-- particular program, or have a client always appear on a particular +-- workspace. +-- +-- To find the property name associated with a program, use +-- > xprop | grep WM_CLASS +-- and click on the client you're interested in. +-- +-- To match on the WM_NAME, you can use 'title' in the same way that +-- 'className' and 'resource' are used below. +-- +myManageHook = composeAll + [ className =? "MPlayer" --> doFloat + + , className =? "Gimp" --> doFloat + , className =? "Qalculate-gtk" --> doFloat + , className =? "Nextcloud" --> doFloat + , className =? "Pavucontrol" --> doFloat + , className =? "Nm-connection-editor" --> doFloat + , className =? "vlc" --> doFloat + , className =? "Alert" --> doFloat + , className =? "jetbrains-clion"--> doFloat + , className =? "yakuake" --> doFloat + , className =? "Imager" --> doFloat + -- , className =? "krunner" --> doFloat + , className =? "jetbrains-clion"--> doShift "2:DEV" + , className =? "Code" --> doShift "2:DEV" + , className =? "Oni2_editor" --> viewShift "2:DEV" + , className =? "Brave-browser" --> doShift "3:WWW" + , className =? "firefox" --> viewShift "3:WWW" + , className =? "okular" --> viewShift "5:TEXT" + -- ,className =? "okular" --> viewShift "5:TEXT" + , className =? "Minecraft Launcher" --> doShift "8:GAMES" + , className =? "Microsoft Teams - Preview" --> doShift "7:SCHOOL" + , className =? "YouTube Music" --> doShift "9:MUSIC" + , className =? "Pcmanfm" --> doShift "6:FOLDER" + , className =? "dolphin" --> viewShift "6:FOLDER" + -- , className =? "Thunar" --> viewShift "5:TEXT" + , resource =? "desktop_window" --> doIgnore + , resource =? "kdesktop" --> doIgnore + ] + where viewShift = doF . liftM2 (.) W.greedyView W.shift + +------------------------------------------------------------------------ +-- Event handling + +-- * EwmhDesktops users should change this to ewmhDesktopsEventHook +-- +-- Defines a custom handler function for X Events. The function should +-- return (All True) if the default handler is to be run afterwards. To +-- combine event hooks use mappend or mconcat from Data.Monoid. +-- +myEventHook = swallowEventHook (className =? "Alacritty" <||> className =? "Termite") (return True) + -- ewmhFullscreen +-- dynStatusBarEventHook barInScreen (spawn "killall polybar; killall polybar") + +------------------------------------------------------------------------ +-- Status bars and logging + +-- Perform an arbitrary action on each internal state change or X event. +-- See the 'XMonad.Hooks.DynamicLog' extension for examples. +-- +myLogHook = do + winset <- gets windowset + title <- maybe (return "") (fmap show . getName) . W.peek $ winset + let currWs = W.currentTag winset + let wss = map W.tag $ W.workspaces winset + let wsStr = join $ map (fmt currWs) $ sort' wss + + io $ appendFile "/tmp/.xmonad-title-log" (title ++ "\n") + io $ appendFile "/tmp/.xmonad-workspace-log" (wsStr ++ "\n") + + where fmt currWs ws + | currWs == ws = "[" ++ ws ++ "]" + | otherwise = " " ++ ws ++ " " + sort' = sortBy (compare `on` (!! 0)) + + +barInScreen :: ScreenId -> IO Handle +barInScreen (S 0) = do + spawn "sleep 2; polybar MainWithTray" + spawn "killall picom" + spawn "sleep 1; picom --backend glx &" + spawnPipe "cat >> /tmp/.xmonad-workspace-log" + +barInScreen (S 1) = do + spawn "sleep 3; polybar SeconderyWitNoTray" + spawn "killall picom" + spawn "sleep 1 ; picom --backend glx &" + spawnPipe "cat >> /tmp/.xmonad-workspace-hdmi-log" +------------------------------------------------------------------------ +-- Startup hook + +-- Perform an arbitrary action each time xmonad starts or is restarted +-- with mod-q. Used by, e.g., XMonad.Layout.PerWorkspace to initialize +-- per-workspace layout choices. +-- +-- By default, do nothing. +myHandleEventHook = swallowEventHook (className =? "Alacritty" <||> className =? "Termite") (return True) + + + +myStartupHook = do + spawnOnce "dunst &" + spawnOnce "/home/$USER/.config/script/redshift.sh &" +-- spawnOnce "/homme/$USER/.config/scripr/docked.sh &" + spawnOnce "xss-lock /home/$USER/.config/script/betterlockscreen.sh &" + spawnOnce "nextcloud --background &" + spawnOnce "fcitx -d &" + spawnOnce "copyq --start-server" + --spawnOnce "mailspring -b &" +-- spawnOnce "/home/$USER/.config/script/audio.sh &" + spawnOnce "/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1" + --"/home/$USER/.config/script/plkit.sh &" + -- spawnOnce "powerkit &" + -- spawnOnce "birdtray &" + spawnOnce "nm-applet &" + -- spawnOnce "connman-ui-gtk &" + -- spawnOnce "yakuake &" + -- spawnOnce "sh /home/$USER/.config/script/polybar-open.sh" + +------------------------------------------------------------------------ +-- Now run xmonad with all the defaults we set up. + +-- Run xmonad with the settings you specify. No need to modify this. +-- +-- +myPP = def {ppCurrent = xmobarColor "black" "whight"} +mainBar = statusBarPropTo "_XMONAD_LOG_1" "polybar MainWithTray" (pure myPP) +secondBar = statusBarPropTo "_XMONAD_LOG_2" "polybar SeconderyWitNoTray" (pure myPP) +barSpawner :: ScreenId -> IO StatusBarConfig +barSpawner 0 = pure $ mainBar +barSpawner 1 = pure $ secondBar +barSpawner _ = mempty +main = do + spawn "picom --backend glx &" + spawn "nitrogen --restore &" + -- xmproc <- spawnPipe "polybar barbase" --"xmobar -x 0 /home/$USER/.config/xmobar/xmobar.config" + -- xmproc <- spawnPipe "polybar barbase2" + -- xmproc <- spawnPipe "xmobar -x 1 /home/$USER/.config/xmobar/xmobar.config" + xmonad $ docks $ ewmhFullscreen $ ewmh $ dynamicSBs barSpawner def { + -- simple stuff + terminal = myTerminal, + focusFollowsMouse = myFocusFollowsMouse, + clickJustFocuses = myClickJustFocuses, + borderWidth = myBorderWidth, + modMask = myModMask, + workspaces = myWorkspaces, + normalBorderColor = myNormalBorderColor, + focusedBorderColor = myFocusedBorderColor, + -- key bindings + keys = myKeys, + mouseBindings = myMouseBindings , + + -- hooks, layouts + layoutHook = smartBorders $ myLayout, + manageHook = myManageHook <+> scratchpadManageHook (W.RationalRect 0.4 0.3 0.6 0.5), + handleEventHook = myEventHook, + logHook = myLogHook >> updatePointer (0.5, 0.5) (0, 0), + startupHook = myStartupHook -- dynStatusBarStartup barInScreen (return ()) + } + forM_ [".xmonad-workspace-log", ".xmonad-title-log"] $ \file -> do + safeSpawn "mkfifo" ["/tmp/" ++ file] + + -- A structure containing your configuration settings, overriding +-- fields in the default config. Any you don't override, will +-- use the defaults defined in xmonad/XMonad/Config.hs +-- +-- No need to modify this. +-- + + +-- | Finally, a copy of the default bindings in simple textual tabular format. +help :: String +help = unlines ["The default modifier key is 'alt'. Default keybindings:", + "", + "-- launching and killing programs", + "mod-Shift-Enter Launch xterminal", + "mod-p Launch dmenu", + "mod-Shift-p Launch gmrun", + "mod-Shift-c Close/kill the focused window", + "mod-Space Rotate through the available layout algorithms", + "mod-Shift-Space Reset the layouts on the current workSpace to default", + "mod-n Resize/refresh viewed windows to the correct size", + "", + "-- move focus up or down the window stack", + "mod-Tab Move focus to the next window", + "mod-Shift-Tab Move focus to the previous window", + "mod-j Move focus to the next window", + "mod-k Move focus to the previous window", + "mod-m Move focus to the master window", + "", + "-- modifying the window order", + "mod-Return Swap the focused window and the master window", + "mod-Shift-j Swap the focused window with the next window", + "mod-Shift-k Swap the focused window with the previous window", + "", + "-- resizing the master/slave ratio", + "mod-h Shrink the master area", + "mod-l Expand the master area", + "", + "-- floating layer support", + "mod-t Push window back into tiling; unfloat and re-tile it", + "", + "-- increase or decrease number of windows in the master area", + "mod-comma (mod-,) Increment the number of windows in the master area", + "mod-period (mod-.) Deincrement the number of windows in the master area", + "", + "-- quit, or restart", + "mod-Shift-q Quit xmonad", + "mod-q Restart xmonad", + "mod-[1..9] Switch to workSpace N", + "", + "-- Workspaces & screens", + "mod-Shift-[1..9] Move client to workspace N", + "mod-{w,e,r} Switch to physical/Xinerama screens 1, 2, or 3", + "mod-Shift-{w,e,r} Move client to screen 1, 2, or 3", + "", + "-- Mouse bindings: default actions bound to mouse events", + "mod-button1 Set the window to floating mode and move by dragging", + "mod-button2 Raise the window to the top of the stack", + "mod-button3 Set the window to floating mode and resize by dragging"] diff --git a/xmonad/.xmonad/xmonad-x86_64-linux b/xmonad/.xmonad/xmonad-x86_64-linux index 1955431..82086e5 100755 Binary files a/xmonad/.xmonad/xmonad-x86_64-linux and b/xmonad/.xmonad/xmonad-x86_64-linux differ diff --git a/xmonad/.xmonad/xmonad.errors b/xmonad/.xmonad/xmonad.errors index e69de29..3f0d5e9 100644 --- a/xmonad/.xmonad/xmonad.errors +++ b/xmonad/.xmonad/xmonad.errors @@ -0,0 +1 @@ +$ ghc --make xmonad.hs -i -ilib -fforce-recomp -main-is main -v0 -outputdir /home/mrfluffy/.xmonad/build-x86_64-linux -o /home/mrfluffy/.xmonad/xmonad-x86_64-linux diff --git a/xmonad/.xmonad/xmonad.hi b/xmonad/.xmonad/xmonad.hi index 3c23a78..5dcf036 100644 Binary files a/xmonad/.xmonad/xmonad.hi and b/xmonad/.xmonad/xmonad.hi differ diff --git a/xmonad/.xmonad/xmonad.o b/xmonad/.xmonad/xmonad.o index 90ddfb1..028a699 100644 Binary files a/xmonad/.xmonad/xmonad.o and b/xmonad/.xmonad/xmonad.o differ diff --git a/xorg/.xinitrc b/xorg/.xinitrc index dacdcfc..b78818f 100755 --- a/xorg/.xinitrc +++ b/xorg/.xinitrc @@ -39,8 +39,10 @@ anamnesis --start numlockx on xsetroot -cursor_name left_ptr alacritty --class scratchpad & -xrandr --output eDP-1 --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-1 --primary --mode 1920x1080 --pos 1920x0 --rotate normal & -exec xmonad +xrandr --output eDP --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-A-0 --primary --mode 1920x1080 --pos 1920x0 --rotate normal +xrandr --output HDMI-A-0 --set TearFree on & +xrandr --output eDP --set TearFree on & +exec /home/mrfluffy/.local/bin/xmonad #----------------------------------------------------- #gome session #export XDG_SESSION_TYPE=x11 diff --git a/zsh/.zshrc b/zsh/.zshrc index 3eae0a3..f3612a5 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -1,8 +1,9 @@ # If you come from bash you might have to change your $PATH. -export PATH=$HOME/bin:/usr/local/bin:$HOME/.emacs.d/bin:$HOME/.local/bin:$PATH - +export PATH=$HOME/bin:/usr/local/bin:$HOME/.emacs.d/bin:$HOME/.local/bin:$HOME/.local/bin:$PATH +export XDG_CONFIG_HOME="$HOME/.config" # Path to your oh-my-zsh installation. export ZSH="/home/mrfluffy/.oh-my-zsh" +export XDG_CURRENT_DESKTOP="river" #(cat ~/.cache/wal/sequences &) #source ~/.cache/wal/colors-tty.sh # Set name of the theme to load --- if set to "random", it will @@ -10,7 +11,7 @@ export ZSH="/home/mrfluffy/.oh-my-zsh" # to know which specific one was loaded, run: echo $RANDOM_THEME # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes ZSH_THEME="agnoster" - +systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # Set list of themes to pick from when loading at random # Setting this variable when ZSH_THEME=random will cause zsh to load # a theme from this variable instead of looking in $ZSH/themes/ @@ -105,5 +106,7 @@ source $ZSH/oh-my-zsh.sh alias ls="exa -lag --icons" alias vim="nvim" alias cat="bat" -alias anime="/home/$USER/repos/ani-cli/ani-cli -q '720'" +alias anime="~/repos/ani-cli/ani-cli -q '720'" +alias mv="mvg -g" +alias cp="cpg -g" neofetch