2023-01-24T03:33:43+00:00https://www.redditstatic.com/icon.png//r/awesomewm.rssSubreddit dedicated to the Awesome Window Manager (AwesomeWM)AwesomeWM: The awesome window manager framework/u/Elv13https://www.reddit.com/user/Elv13  submitted by   <a href="https://www.reddit.com/user/Elv13"> /u/Elv13 </a> <br/> <span><a href="https://github.com/awesomeWM/awesome/issues/1395">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/5nvw0x/wanted_awesome_screenshots/">[comments]</a></span>t3_5nvw0x2017-01-14T05:39:02+00:002017-01-14T05:39:02+00:00WANTED: Awesome screenshots/u/ThomasLeonHighbaughhttps://www.reddit.com/user/ThomasLeonHighbaugh<!-- SC_OFF --><div class="md"><p>After doing obsessive amounts of research on Github into projects related to AwesomeWM, I have a pretty extensive collection of links that I have built up and since there is no active and updated Awesome list related to our favorite window manager, I threw one together for those looking to add some functionality to their configuration but not willing or yet able to write it themselves (keyword: yet). </p> <p><a href="https://github.com/Thomashighbaugh/Awesome-AwesomeWM-Modules-Widgets-And-Libraries">Here it is</a>, stars are appreciated, as are pull requests and issues about things I forgot (or rants about how stupid my categories are). If you want merged pull requests, add to the list because I will merge it, I'm not picky. </p> <hr/> <p>I am working on another list that features the over 150+ modular configurations I have also starred and added to my "awesomewm" list but that is going to require I create a taxonomy from scratch that makes sense to people other than just me, so that one may take a while.</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/ThomasLeonHighbaugh"> /u/ThomasLeonHighbaugh </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/wid67d/i_made_an_awesome_list_of_modules_libraries_and/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/wid67d/i_made_an_awesome_list_of_modules_libraries_and/">[comments]</a></span>t3_wid67d2022-08-07T11:04:40+00:002022-08-07T11:04:40+00:00I Made an Awesome list of Modules, Libraries and Widgets you can use in your configuration/u/mobkunxhttps://www.reddit.com/user/mobkunx<!-- SC_OFF --><div class="md"><p>theme.notification_border_radius = dpi(6) </p> <p>theme.notification_border_width = dpi(3)</p> <p>These don't seem to work. IDK why. What do I have to do in order to get this working?</p> <p>Dots : <a href="https://github.com/MobSenpai/dotfiles/tree/main/home/yashraj/modules/desktop/windowManagers/awesome">here</a></p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/mobkunx"> /u/mobkunx </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10ij88l/naughty_notification_border_width_using_themelua/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10ij88l/naughty_notification_border_width_using_themelua/">[comments]</a></span>t3_10ij88l2023-01-22T13:04:35+00:002023-01-22T13:04:35+00:00Naughty notification border width using theme.lua not working/u/Vasyl_59https://www.reddit.com/user/Vasyl_59<!-- SC_OFF --><div class="md"><p>Hi I've edited some shortcuts in my rc.lua and, in some moment i don't know, the Mod4 + "m" shortcut stopped working.</p> <p>This is my maximize code (it is same as the default one):</p> <pre><code>awful.key({ modkey, }, "m", --This is the command that doesn't work 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"}) </code></pre> <p>The only command that doesn't work of the three is the commented.</p> <p>I already checked that I don't have another action mapped to the same shortcut in the entire rc.lua. If I try to map maximize/unmaximize to another shortcut like Mod4, Mod1 + "m" maximize works. Also, if i use the default rc.lua config, it works too. I have googled the problem and the only guy i find with the same problem is this one:</p> <p><a href="https://stackoverflow.com/questions/29670635/awesome-wm-does-not-maximize-windows-anymore">https://stackoverflow.com/questions/29670635/awesome-wm-does-not-maximize-windows-anymore</a></p> <p>I checked that i'm using latin layout (Spanish) but still doesn't work.</p> <p>What could the problem be?</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/Vasyl_59"> /u/Vasyl_59 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10hwfbv/cant_use_mod4_m_shortcut_anymore/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10hwfbv/cant_use_mod4_m_shortcut_anymore/">[comments]</a></span>t3_10hwfbv2023-01-21T17:26:36+00:002023-01-21T17:26:36+00:00Can't use Mod4 + "m" shortcut anymore/u/Hygor0206https://www.reddit.com/user/Hygor0206<!-- SC_OFF --><div class="md"><p>Hello, recently I install awesomewm and start to setup the rc.lua and I'm trying to configure volume keys and brightness keys, but, I doesn't know why its not working, I have tried doing this config</p> <pre><code>awful.key({}, "XF86MonBrightnessUp", function() os.execute("xbacklight -inc 5") end, {description = "+5", group = "hotkeys"}), awful.key({}, "XF86MonBrightnessDown", function() os.execute("xbacklight -dec 5") end, {description = "-5%", group = "hotkeys"}), awful.key({}, "XF86AudioRaiseVolume", function() os.execute("amixer set Master 5%+") end, {description = "volume up", group = "hotkeys"}), awful.key({}, "XF86AudioLowerVolume", function() os.execute("amixer set Master 5%-") end, {description = "volume down", group = "hotkeys"}), awful.key({}, "XF86AudioMute",function() os.execute("amixer -q set Master toggle") end, {description = "toggle mute", group = "hotkeys"}), </code></pre> <p>But when I test the config got a syntax error </p> <pre><code>~/.config/awesome/rc.lua:575: syntax error near ',' Configuration file syntax error </code></pre> <p>I also tried pulseaudio commands, but the same happens, may someone help me? Its my first try with awesomewm and I'm still learning.</p> <p>Here's my rc.lua</p> <p><a href="https://pastebin.com/rbESg1JA">https://pastebin.com/rbESg1JA</a></p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/Hygor0206"> /u/Hygor0206 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10hw81o/volume_and_brightness_not_working/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10hw81o/volume_and_brightness_not_working/">[comments]</a></span>t3_10hw81o2023-01-21T17:17:48+00:002023-01-21T17:17:48+00:00Volume and Brightness not working/u/mobkunxhttps://www.reddit.com/user/mobkunx<!-- SC_OFF --><div class="md"><p>Just awesomewm configs</p> <p>config location is <a href="https://github.com/MobSenpai/dotfiles/tree/main/home/yashraj/modules/desktop/windowManagers/awesome">here</a></p> <p>- Mostly these</p> <ul> <li>theme.lua and rc.lua compatibility</li> <li>naughty notification configuration</li> </ul> <p>Please just go through dotfiles and markout the errors or suggestions</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/mobkunx"> /u/mobkunx </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10hrpvq/please_check_my_dotfiles_for_errors/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10hrpvq/please_check_my_dotfiles_for_errors/">[comments]</a></span>t3_10hrpvq2023-01-21T13:52:13+00:002023-01-21T13:52:13+00:00Please check my dotfiles for errors/u/TriX005https://www.reddit.com/user/TriX005<!-- SC_OFF --><div class="md"><p>I don't want to use awesome font and these icons because I have less options for free icons</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/TriX005"> /u/TriX005 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10h2rg1/how_to_add_imageicon_on_bar/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10h2rg1/how_to_add_imageicon_on_bar/">[comments]</a></span>t3_10h2rg12023-01-20T17:27:34+00:002023-01-20T17:27:34+00:00How to add image(icon) on bar?/u/TriX005https://www.reddit.com/user/TriX005<!-- SC_OFF --><div class="md"><p>I have error on this line <a href="https://awful.widget.watch">awful.widget.watch</a>('bash -c "free -m | grep "Mem:" | awk '{ printf "%d", $3 ; exit}' " ')</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/TriX005"> /u/TriX005 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10ghevc/how_to_have_single_quotes_in_command_in/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10ghevc/how_to_have_single_quotes_in_command_in/">[comments]</a></span>t3_10ghevc2023-01-19T23:56:50+00:002023-01-19T23:56:50+00:00how to have single quotes in command in awful.widget.watch?/u/TriX005https://www.reddit.com/user/TriX005  submitted by   <a href="https://www.reddit.com/user/TriX005"> /u/TriX005 </a> <br/> <span><a href="https://i.redd.it/acjbigr41xca1.png">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10fqpnb/why_doesnt_widgettextboxabc_show_on_bar/">[comments]</a></span>t3_10fqpnb2023-01-19T03:04:39+00:002023-01-19T03:04:39+00:00Why doesn't widget.textbox('abc') show on bar?/u/TriX005https://www.reddit.com/user/TriX005<!-- SC_OFF --><div class="md"><p>Can I make tag boxes wider without adding spaces between numbers? Eg. {" 1 ", " 2 ", " 3 "}</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/TriX005"> /u/TriX005 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10fls8m/how_to_make_tag_boxes_wider/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10fls8m/how_to_make_tag_boxes_wider/">[comments]</a></span>t3_10fls8m2023-01-18T23:23:50+00:002023-01-18T23:23:50+00:00How to make tag boxes wider?/u/YumKahttps://www.reddit.com/user/YumKa<!-- SC_OFF --><div class="md"><p>An action named "default", sent for example from an external application or with something like "notify-send -A 'default=SomeText'" is not displayed in naughty.list.actions, nor do I see it anywhere in the notification table. It is however available as a function property "run" on the notification object itself. </p> <p>This property is stated to be deprecated and that we should use signals. What signal should I emit to run this default action? Or am I missing something?</p> <p>Using Awesome git version</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/YumKa"> /u/YumKa </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10fmpd8/how_to_run_default_action_in_naughty/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10fmpd8/how_to_run_default_action_in_naughty/">[comments]</a></span>t3_10fmpd82023-01-19T00:02:40+00:002023-01-19T00:02:40+00:00How to run "default" action in naughty?/u/erich2k8https://www.reddit.com/user/erich2k8<!-- SC_OFF --><div class="md"><p>I'm aware of sloppy focus, which I've removed. However, on a multiple monitor setup, the focused <strong>screen</strong> still follows it. E.g.</p> <pre><code>local screen = awful.screen.focused() </code></pre> <p>This returns the screen where the mouse is, so keybinds like meta+2 naviates to tag 2 where the mouse cursor happens to be. Based on the docs <a href="https://awesomewm.org/doc/api/classes/screen.html#awful.screen.focused">here</a>, I tried:</p> <pre><code>local screen = awful.screen.focused({ client = true, mouse = false }) </code></pre> <p>But this did not seem to have any effect (it's not clear to me why both of these exist, btw. The limited description there would seem like they're mutually exclusive). Is there a way to disable this behavior and/or another way to get "the screen with the focused window"?</p> <p>Ideally, I really don't want the mouse cursor to have any effect on focus at all unless I actually click something. With sloppy focus disabled, this is particularly confusing. The focused window border is where my eyes go. I don't even really know where the mouse cursor is most of the time unless I start moving it. I've gotten rid of all of the mousewheel behaviors in tag/task lists for the same reason, but e.g. volumeicon still adjusts the volume on mousewheel if the pointer is over it.</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/erich2k8"> /u/erich2k8 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10fefzj/stop_screen_focus_from_following_mouse_not_window/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10fefzj/stop_screen_focus_from_following_mouse_not_window/">[comments]</a></span>t3_10fefzj2023-01-18T18:18:09+00:002023-01-18T18:18:09+00:00stop screen focus from following mouse (not window)/u/lizard_king_421https://www.reddit.com/user/lizard_king_421<!-- SC_OFF --><div class="md"><p>Title says it all. I'm trying to prevent my screen from automatically turning off while using awesome. I saw <a href="https://www.reddit.com/r/awesomewm/comments/e2iqng/prevent_display_from_turning_off/">this</a> post with someone seemingly solving the issue with the following code</p> <p><code>xset s off</code><br/> <code>xset -dpms</code><br/> <code>xset s noblank</code></p> <p>but I am not sure what to do with that. Drop it in the rc.lua? I'm sure the solution is simple, I just can't seem to find it in the documentation.</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/lizard_king_421"> /u/lizard_king_421 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10eyh14/prevent_display_from_turning_off/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10eyh14/prevent_display_from_turning_off/">[comments]</a></span>t3_10eyh142023-01-18T04:54:30+00:002023-01-18T04:54:30+00:00Prevent display from turning off/u/AnyFaithlessness3277https://www.reddit.com/user/AnyFaithlessness3277<!-- SC_OFF --><div class="md"><p>Why can't I open Firefox on AwesomeWM? I tried to add some lines in rc.lua which I found as solution to this error but it doesn't work</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/AnyFaithlessness3277"> /u/AnyFaithlessness3277 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10f8nd3/cant_open_firefox/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10f8nd3/cant_open_firefox/">[comments]</a></span>t3_10f8nd32023-01-18T14:26:43+00:002023-01-18T14:26:43+00:00Can't open Firefox/u/Wise_Opportunity_857https://www.reddit.com/user/Wise_Opportunity_857<!-- SC_OFF --><div class="md"><p>2023-01-17-230954_1440x900_scrot_000.png</p> <p>2023-01-17-230954_1440x900_scrot_001.png</p> <p>2023-01-17-230954_1440x900_scrot_002.png</p> <p>2023-01-17-230954_1440x900_scrot_003.png</p> <p>2023-01-17-230954_1440x900_scrot_004.png</p> <p>2023-01-17-230954_1440x900_scrot_005.png</p> <p>2023-01-17-230954_1440x900_scrot_006.png</p> <p>2023-01-17-230954_1440x900_scrot_007.png</p> <p>2023-01-17-230954_1440x900_scrot.png</p> <p>​</p> <p>this is what i get when i do this:</p> <p>​</p> <p>awful.key({modkey}, "Print", function()</p> <p>awful.util.spawn("scrot")</p> <p>end),</p> <p>​</p> <p>why does it take 8 screenshots? does my end not work properly?</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/Wise_Opportunity_857"> /u/Wise_Opportunity_857 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10epa09/hotkey_for_scrot_screenshot_help/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10epa09/hotkey_for_scrot_screenshot_help/">[comments]</a></span>t3_10epa092023-01-17T22:13:19+00:002023-01-17T22:13:19+00:00hotkey for scrot screenshot help/u/craxinghttps://www.reddit.com/user/craxing<!-- SC_OFF --><div class="md"><p>I've noticed recently that when I open freetube on awesomewm, the window is automatically maximized into full screen. And when I unmaximize it and click full screen, it should take up the full <strong>screen</strong>, but instead takes up just the entire <strong>window</strong>.</p> <p>Wasn't like this before.</p> <p>Seems to behave like this even with default config.</p> <p>Can't change behavior of opening as full screen :(</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/craxing"> /u/craxing </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10ekimi/is_it_me_or_does_freetube_automatically_open_as/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10ekimi/is_it_me_or_does_freetube_automatically_open_as/">[comments]</a></span>t3_10ekimi2023-01-17T19:10:07+00:002023-01-17T19:10:07+00:00Is it me, or does FreeTube automatically open as full screen on awesomewm?/u/brockcochranhttps://www.reddit.com/user/brockcochran<!-- SC_OFF --><div class="md"><p>In my user's crontab, I have:</p> <pre><code>4 * * * * export DISPLAY=:0.0; awesome-client 'naughty = require("naughty") naughty.notify({text = "This does not work.", timeout = 0})' 4 * * * * export DISPLAY=:0.0; notify-send -t 0 "This works." </code></pre> <p>This causes the error:</p> <pre><code>Error org.freedesktop.DBus.Error.ServiceUnknown: The name org.awesomewm.awful was not provided by any .service files E: dbus-send failed. </code></pre> <p>I am using Debian 11 with:</p> <pre><code>awesome --version awesome v4.3 (Too long) • Compiled against Lua 5.3.3 (running with Lua 5.3) • D-Bus support: ✔ • execinfo support: ✔ • xcb-randr version: 1.6 • LGI version: 0.9.2 </code></pre> <p>I would just use <code>notify-send</code>, but I want to use <code>naughty.notify</code> to be able to style this notification to my liking, etc.</p> <p><code>ps aux | grep -i dbus</code> returns that the <code>dbus-daemon</code> is running with both the <code>--system</code> and <code>--session</code> flags.</p> <p>I would be glad to provide any additional information, and I appreciate the help!</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/brockcochran"> /u/brockcochran </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10ehmmn/dbus_error_with_naughtynotify_in_crontab/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10ehmmn/dbus_error_with_naughtynotify_in_crontab/">[comments]</a></span>t3_10ehmmn2023-01-17T17:16:24+00:002023-01-17T17:16:24+00:00D-Bus error with naughty.notify in crontab/u/gbneonhttps://www.reddit.com/user/gbneon<!-- SC_OFF --><div class="md"><p>In awesomeWM, how do I assign a single key or a keybinding to execute a specific command? For example, setting Ctrl + u to run "alacritty -e yay -Syu" and so on</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/gbneon"> /u/gbneon </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10edceb/set_a_key_or_keybinding_to_run_a_command/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10edceb/set_a_key_or_keybinding_to_run_a_command/">[comments]</a></span>t3_10edceb2023-01-17T14:17:30+00:002023-01-17T14:17:30+00:00Set a key or keybinding to run a command/u/Redgabriel_13https://www.reddit.com/user/Redgabriel_13<!-- SC_OFF --><div class="md"><p>its been 2 days that ive started using manjaro linux with gnome and im just using gnome to set up things for awesome and im having some problems on awesome, for exemple: on gnome when i try to mount my drive that have windows it asks for my password and then i can access it but in awesome using the same file browser (that one that comes with gnome) it does not asks for my password and it says that i do not have permission. another thing that happens is that i cant sync my passwords in the opera web browser via an opera account on awesome but on gnome it works fine. i think the problem has something to do with authentication. and i realy want to use awesome but i need those things working</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/Redgabriel_13"> /u/Redgabriel_13 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10drpmo/having_some_problems_switching_from_gnome_to/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10drpmo/having_some_problems_switching_from_gnome_to/">[comments]</a></span>t3_10drpmo2023-01-16T21:00:11+00:002023-01-16T21:00:11+00:00having some problems switching from gnome to awesome/u/raven2czhttps://www.reddit.com/user/raven2cz  submitted by   <a href="https://www.reddit.com/user/raven2cz"> /u/raven2cz </a> <br/> <span><a href="https://i.redd.it/9wojarz7p8ca1.jpg">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10cwnmm/awesomewm_dashboard_for_multicolor_theme/">[comments]</a></span>t3_10cwnmm2023-01-15T22:14:04+00:002023-01-15T22:14:04+00:00[AwesomeWM] Dashboard for Multicolor Theme, Prototype I./u/mav36https://www.reddit.com/user/mav36<!-- SC_OFF --><div class="md"><p>I use the following code to set the client titlebar font to switch (bold) on focus/unfocus:</p> <pre><code>-- allow to set the titlebar font based on client focus local titlewidgets = setmetatable({}, { __mode = "k" }) local function my_titlewidget(c) local w = titlewidgets[c] if not w then w = awful.titlebar.widget.titlewidget(c) local function update() if client.focus == c then w.font = beautiful.titlebar_font_focus else w.font = beautiful.titlebar_font end end update() c:connect_signal("focus", update) c:connect_signal("unfocus", update) titlewidgets[c] = w end return w end </code></pre> <p>Above code works on stable but does not work in awesome-git (awesome v4.3-1586-gee066345)Did some testing, i can use the same function to move the widget left or right or change the text of the "w" widget. w.font or w:set_font() both do not work.</p> <p>Funny thing is that if I call w:get_font() after setting the new font, it returns the updated font name but the widget itself does not change.</p> <p>Not sure what I'm doing wrong here, any tips are appreciated. Or maybe there's a better/simpler way to accomplish this?</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/mav36"> /u/mav36 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10cs8ue/titlebar_font_change_on_client_focus_works_on_43/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10cs8ue/titlebar_font_change_on_client_focus_works_on_43/">[comments]</a></span>t3_10cs8ue2023-01-15T19:19:25+00:002023-01-15T19:19:25+00:00titlebar font change on client focus works on 4.3 stable but not on awesome-git/u/youyohnhttps://www.reddit.com/user/youyohn<!-- SC_OFF --><div class="md"><p>Hello, I've run into an interesting problem. I had a working awesomewm configuration, and I've accidentally shut down the PC (by flipping the off switch on my extension cable I've got my PC connected to) while I was using awesome. Now when I boot the computer up, I can get to TTY and Ly, but after login I only get a black screen. I can get to Plasma with no problems.</p> <p>Where can I start debugging this?</p> <p>Xorg log (last few lines after I start awesome with <code>startx</code> ):</p> <pre><code>[ 786.524\] (II) systemd-logind: got pause for 13:66 [ 786.524\] (II) systemd-logind: got pause for 13:76 [ 786.524\] (II) systemd-logind: got pause for 13:65 [ 786.524\] (II) systemd-logind: got pause for 13:79 [ 786.524\] (II) systemd-logind: got pause for 13:78 [ 786.524\] (II) systemd-logind: got pause for 13:80 </code></pre> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/youyohn"> /u/youyohn </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10cpgo6/black_screen_after_hard_reboot/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10cpgo6/black_screen_after_hard_reboot/">[comments]</a></span>t3_10cpgo62023-01-15T17:29:53+00:002023-01-15T17:29:53+00:00Black screen after HARD reboot/u/p8_ghttps://www.reddit.com/user/p8_g<!-- SC_OFF --><div class="md"><p>is there any signal that is triggered when the layout is changed, for example, from tiling to float? maybe write something at bind change layout? how i can switch titlebar for all clients and only on floating mode ?</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/p8_g"> /u/p8_g </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10bwd02/to_do_something_at_change_layout/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10bwd02/to_do_something_at_change_layout/">[comments]</a></span>t3_10bwd022023-01-14T19:01:49+00:002023-01-14T19:01:49+00:00to do something at change layout/u/InKeatonhttps://www.reddit.com/user/InKeaton<!-- SC_OFF --><div class="md"><p>Hi.</p> <p>I really like having windows without the titlebars, but i realized that i'm not able to resize them in floating mode...</p> <p>Do you know how to do it? Thanks in advance!</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/InKeaton"> /u/InKeaton </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10bv6cf/resizing_windows_without_titlebars/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10bv6cf/resizing_windows_without_titlebars/">[comments]</a></span>t3_10bv6cf2023-01-14T18:15:00+00:002023-01-14T18:15:00+00:00Resizing windows without titlebars/u/MasterMach50https://www.reddit.com/user/MasterMach50<!-- SC_OFF --><div class="md"><p>I want to create a window for the music visualizer <a href="https://github.com/dpayne/cli-visualizer">cli-visualizer</a>, it runs in the terminal</p> <p>Is there any way to make that window - non interactive - unable to switch to using shortcuts - without titlebar</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/MasterMach50"> /u/MasterMach50 </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10brt5q/how_to_create_an_overlay_like_non_interactive/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10brt5q/how_to_create_an_overlay_like_non_interactive/">[comments]</a></span>t3_10brt5q2023-01-14T15:57:32+00:002023-01-14T15:57:32+00:00How to create an overlay like non interactive window/u/Strazilhttps://www.reddit.com/user/Strazil  submitted by   <a href="https://www.reddit.com/user/Strazil"> /u/Strazil </a> <br/> <span><a href="https://i.redd.it/8xe5dwn2ovba1.png">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10b5yhk/came_from_xmonad_to_awesomewm_and_i_love_it/">[comments]</a></span>t3_10b5yhk2023-01-13T21:22:34+00:002023-01-13T21:22:34+00:00Came from Xmonad to AwesomeWM and i love it!/u/InKeatonhttps://www.reddit.com/user/InKeaton<!-- SC_OFF --><div class="md"><p>Hi</p> <p>While looking online, i saw that you should be able to get rouned corners by adding decorations.enable_rounding() inside of theme.lua</p> <p>But... it doesn't work? </p> <p>So, i would like to ask if you know what am i doing wrong, or if it is a better way to round window corners (WITHOUT using a compositor)</p> <p>thanks in advance :)</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/InKeaton"> /u/InKeaton </a> <br/> <span><a href="https://www.reddit.com/r/awesomewm/comments/10blyrx/how_to_use_decorationsenable_rounding/">[link]</a></span>   <span><a href="https://www.reddit.com/r/awesomewm/comments/10blyrx/how_to_use_decorationsenable_rounding/">[comments]</a></span>t3_10blyrx2023-01-14T11:05:42+00:002023-01-14T11:05:42+00:00How to use decorations.enable_rounding()