Giter Site home page Giter Site logo

Comments (11)

paradoxsupreme avatar paradoxsupreme commented on July 30, 2024 2

ok nvm thanks.I already did that .Great job with your config btw.its really beautiful!

from dotfiles.

elenapan avatar elenapan commented on July 30, 2024 1

The issues should be fixed now.

from dotfiles.

paradoxsupreme avatar paradoxsupreme commented on July 30, 2024

Any way to make them work for dual monitor setup?
thanks!

from dotfiles.

elenapan avatar elenapan commented on July 30, 2024

Unfortunately, not until I fix it. If you would like to use this config with multiple monitors for the time being, I suggest replacing these widgets with AwesomeWM's "native" taglist.

from dotfiles.

elenapan avatar elenapan commented on July 30, 2024

As of the latest commit db310f8, Lovelace and Skyfall taglists now work with multiple monitors.

from dotfiles.

neoscaler avatar neoscaler commented on July 30, 2024

Would like to add that the new lock screen only locks one screen, which is if you use multiple screens ... not very secure.

// edit: Just saw lock screen is already in the list. Nevermind.

from dotfiles.

neoscaler avatar neoscaler commented on July 30, 2024

For me, the taglist and wibar is duplicated on my main screen when I am using a dual screen setup. Please see the screenshot here: https://imgur.com/a/DQ5JtQf

from dotfiles.

elenapan avatar elenapan commented on July 30, 2024

the taglist and wibar is duplicated

Hmm that is strange. Could you please also try the lovelaceor skyfall bar themes (you can change the bar theme easily at the top of my rc.lua), as well as try the default rc.lua with a dual monitor setup? If you built from source, you can grab the default rc.lua from awesomerc.lua in the git repo.

from dotfiles.

neoscaler avatar neoscaler commented on July 30, 2024

the taglist and wibar is duplicated

Hmm that is strange. Could you please also try the lovelaceor skyfall bar themes (you can change the bar theme easily at the top of my rc.lua), as well as try the default rc.lua with a dual monitor setup? If you built from source, you can grab the default rc.lua from awesomerc.lua in the git repo.

Can't start skyfall because of a nil global icon path, but lovelace is working fine. Wibar/taglist is on each monitor.

from dotfiles.

elenapan avatar elenapan commented on July 30, 2024

Thanks for testing that. It was an easy fix. I pushed it to the repo, but if you want to quickly fix it yourself, just go to bars/ephemeral.lua and set screen = s somewhere in the wibar declaration for both s.mywibox and s.mytopwibox.

Here is the diff:

--- a/config/awesome/bars/ephemeral.lua
+++ b/config/awesome/bars/ephemeral.lua
@@ -266,7 +266,7 @@ awful.screen.connect_for_each_screen(function(s)


     -- Create the wibox
-    s.mywibox = awful.wibar({visible = true, ontop = true, type = "dock", position = "bottom"})
+    s.mywibox = awful.wibar({screen = s, visible = true, ontop = true, type = "dock", position = "bottom"})
     s.mywibox.height = beautiful.wibar_height
     -- s.mywibox.width = beautiful.wibar_width

@@ -293,7 +293,7 @@ awful.screen.connect_for_each_screen(function(s)


     -- Create the top bar
-    s.mytopwibox = awful.wibar({visible = true, ontop = false, type = "dock", position = "top", height = dpi(5)})
+    s.mytopwibox = awful.wibar({screen = s, visible = true, ontop = false, type = "dock", position = "top", height = dpi(5)})
     -- Bar placement
     awful.placement.maximize_horizontally(s.mytopwibox)
     s.mytopwibox.bg = "#00000000"

I also fixed a typo in skyfall that was causing an error.

from dotfiles.

neoscaler avatar neoscaler commented on July 30, 2024

Thanks, was just about to prepare this as PR, as I fixed it as well, but you were faster.

from dotfiles.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.