1 line
No EOL
43 KiB
XML
1 line
No EOL
43 KiB
XML
<?xml version="1.0" encoding="UTF-8"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/"><category term="awesomewm" label="r/awesomewm"/><updated>2023-01-24T03:33:43+00:00</updated><icon>https://www.redditstatic.com/icon.png/</icon><id>/r/awesomewm.rss</id><link rel="self" href="https://www.reddit.com/r/awesomewm.rss" type="application/atom+xml" /><link rel="alternate" href="https://www.reddit.com/r/awesomewm" type="text/html" /><subtitle>Subreddit dedicated to the Awesome Window Manager (AwesomeWM)</subtitle><title>AwesomeWM: The awesome window manager framework</title><entry><author><name>/u/Elv13</name><uri>https://www.reddit.com/user/Elv13</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html">&#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/5nvw0x/wanted_awesome_screenshots/">[comments]</a></span></content><id>t3_5nvw0x</id><link href="https://www.reddit.com/r/awesomewm/comments/5nvw0x/wanted_awesome_screenshots/" /><updated>2017-01-14T05:39:02+00:00</updated><published>2017-01-14T05:39:02+00:00</published><title>WANTED: Awesome screenshots</title></entry><entry><author><name>/u/ThomasLeonHighbaugh</name><uri>https://www.reddit.com/user/ThomasLeonHighbaugh</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- 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&#39;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 &quot;awesomewm&quot; 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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/wid67d/i_made_an_awesome_list_of_modules_libraries_and/">[comments]</a></span></content><id>t3_wid67d</id><link href="https://www.reddit.com/r/awesomewm/comments/wid67d/i_made_an_awesome_list_of_modules_libraries_and/" /><updated>2022-08-07T11:04:40+00:00</updated><published>2022-08-07T11:04:40+00:00</published><title>I Made an Awesome list of Modules, Libraries and Widgets you can use in your configuration</title></entry><entry><author><name>/u/mobkunx</name><uri>https://www.reddit.com/user/mobkunx</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>theme.notification_border_radius = dpi(6) </p> <p>theme.notification_border_width = dpi(3)</p> <p>These don&#39;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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10ij88l/naughty_notification_border_width_using_themelua/">[comments]</a></span></content><id>t3_10ij88l</id><link href="https://www.reddit.com/r/awesomewm/comments/10ij88l/naughty_notification_border_width_using_themelua/" /><updated>2023-01-22T13:04:35+00:00</updated><published>2023-01-22T13:04:35+00:00</published><title>Naughty notification border width using theme.lua not working</title></entry><entry><author><name>/u/Vasyl_59</name><uri>https://www.reddit.com/user/Vasyl_59</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>Hi I&#39;ve edited some shortcuts in my rc.lua and, in some moment i don&#39;t know, the Mod4 + &quot;m&quot; shortcut stopped working.</p> <p>This is my maximize code (it is same as the default one):</p> <pre><code>awful.key({ modkey, }, &quot;m&quot;, --This is the command that doesn&#39;t work function (c) c.maximized = not c.maximized c:raise() end , {description = &quot;(un)maximize&quot;, group = &quot;client&quot;}), awful.key({ modkey, &quot;Control&quot; }, &quot;m&quot;, function (c) c.maximized_vertical = not c.maximized_vertical c:raise() end , {description = &quot;(un)maximize vertically&quot;, group = &quot;client&quot;}), awful.key({ modkey, &quot;Shift&quot; }, &quot;m&quot;, function (c) c.maximized_horizontal = not c.maximized_horizontal c:raise() end , {description = &quot;(un)maximize horizontally&quot;, group = &quot;client&quot;}) </code></pre> <p>The only command that doesn&#39;t work of the three is the commented.</p> <p>I already checked that I don&#39;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 + &quot;m&quot; 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&#39;m using latin layout (Spanish) but still doesn&#39;t work.</p> <p>What could the problem be?</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10hwfbv/cant_use_mod4_m_shortcut_anymore/">[comments]</a></span></content><id>t3_10hwfbv</id><link href="https://www.reddit.com/r/awesomewm/comments/10hwfbv/cant_use_mod4_m_shortcut_anymore/" /><updated>2023-01-21T17:26:36+00:00</updated><published>2023-01-21T17:26:36+00:00</published><title>Can't use Mod4 + "m" shortcut anymore</title></entry><entry><author><name>/u/Hygor0206</name><uri>https://www.reddit.com/user/Hygor0206</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>Hello, recently I install awesomewm and start to setup the rc.lua and I&#39;m trying to configure volume keys and brightness keys, but, I doesn&#39;t know why its not working, I have tried doing this config</p> <pre><code>awful.key({}, &quot;XF86MonBrightnessUp&quot;, function() os.execute(&quot;xbacklight -inc 5&quot;) end, {description = &quot;+5&quot;, group = &quot;hotkeys&quot;}), awful.key({}, &quot;XF86MonBrightnessDown&quot;, function() os.execute(&quot;xbacklight -dec 5&quot;) end, {description = &quot;-5%&quot;, group = &quot;hotkeys&quot;}), awful.key({}, &quot;XF86AudioRaiseVolume&quot;, function() os.execute(&quot;amixer set Master 5%+&quot;) end, {description = &quot;volume up&quot;, group = &quot;hotkeys&quot;}), awful.key({}, &quot;XF86AudioLowerVolume&quot;, function() os.execute(&quot;amixer set Master 5%-&quot;) end, {description = &quot;volume down&quot;, group = &quot;hotkeys&quot;}), awful.key({}, &quot;XF86AudioMute&quot;,function() os.execute(&quot;amixer -q set Master toggle&quot;) end, {description = &quot;toggle mute&quot;, group = &quot;hotkeys&quot;}), </code></pre> <p>But when I test the config got a syntax error </p> <pre><code>~/.config/awesome/rc.lua:575: syntax error near &#39;,&#39; 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&#39;m still learning.</p> <p>Here&#39;s my rc.lua</p> <p><a href="https://pastebin.com/rbESg1JA">https://pastebin.com/rbESg1JA</a></p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10hw81o/volume_and_brightness_not_working/">[comments]</a></span></content><id>t3_10hw81o</id><link href="https://www.reddit.com/r/awesomewm/comments/10hw81o/volume_and_brightness_not_working/" /><updated>2023-01-21T17:17:48+00:00</updated><published>2023-01-21T17:17:48+00:00</published><title>Volume and Brightness not working</title></entry><entry><author><name>/u/mobkunx</name><uri>https://www.reddit.com/user/mobkunx</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- 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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10hrpvq/please_check_my_dotfiles_for_errors/">[comments]</a></span></content><id>t3_10hrpvq</id><link href="https://www.reddit.com/r/awesomewm/comments/10hrpvq/please_check_my_dotfiles_for_errors/" /><updated>2023-01-21T13:52:13+00:00</updated><published>2023-01-21T13:52:13+00:00</published><title>Please check my dotfiles for errors</title></entry><entry><author><name>/u/TriX005</name><uri>https://www.reddit.com/user/TriX005</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>I don&#39;t want to use awesome font and these icons because I have less options for free icons</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10h2rg1/how_to_add_imageicon_on_bar/">[comments]</a></span></content><id>t3_10h2rg1</id><link href="https://www.reddit.com/r/awesomewm/comments/10h2rg1/how_to_add_imageicon_on_bar/" /><updated>2023-01-20T17:27:34+00:00</updated><published>2023-01-20T17:27:34+00:00</published><title>How to add image(icon) on bar?</title></entry><entry><author><name>/u/TriX005</name><uri>https://www.reddit.com/user/TriX005</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>I have error on this line <a href="https://awful.widget.watch">awful.widget.watch</a>(&#39;bash -c &quot;free -m | grep &quot;Mem:&quot; | awk &#39;{ printf &quot;%d&quot;, $3 ; exit}&#39; &quot; &#39;)</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10ghevc/how_to_have_single_quotes_in_command_in/">[comments]</a></span></content><id>t3_10ghevc</id><link href="https://www.reddit.com/r/awesomewm/comments/10ghevc/how_to_have_single_quotes_in_command_in/" /><updated>2023-01-19T23:56:50+00:00</updated><published>2023-01-19T23:56:50+00:00</published><title>how to have single quotes in command in awful.widget.watch?</title></entry><entry><author><name>/u/TriX005</name><uri>https://www.reddit.com/user/TriX005</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html">&#32; submitted by &#32; <a href="https://www.reddit.com/user/TriX005"> /u/TriX005 </a> <br/> <span><a href="https://i.redd.it/acjbigr41xca1.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10fqpnb/why_doesnt_widgettextboxabc_show_on_bar/">[comments]</a></span></content><id>t3_10fqpnb</id><link href="https://www.reddit.com/r/awesomewm/comments/10fqpnb/why_doesnt_widgettextboxabc_show_on_bar/" /><updated>2023-01-19T03:04:39+00:00</updated><published>2023-01-19T03:04:39+00:00</published><title>Why doesn't widget.textbox('abc') show on bar?</title></entry><entry><author><name>/u/TriX005</name><uri>https://www.reddit.com/user/TriX005</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>Can I make tag boxes wider without adding spaces between numbers? Eg. {&quot; 1 &quot;, &quot; 2 &quot;, &quot; 3 &quot;}</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10fls8m/how_to_make_tag_boxes_wider/">[comments]</a></span></content><id>t3_10fls8m</id><link href="https://www.reddit.com/r/awesomewm/comments/10fls8m/how_to_make_tag_boxes_wider/" /><updated>2023-01-18T23:23:50+00:00</updated><published>2023-01-18T23:23:50+00:00</published><title>How to make tag boxes wider?</title></entry><entry><author><name>/u/YumKa</name><uri>https://www.reddit.com/user/YumKa</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>An action named &quot;default&quot;, sent for example from an external application or with something like &quot;notify-send -A &#39;default=SomeText&#39;&quot; 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 &quot;run&quot; 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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10fmpd8/how_to_run_default_action_in_naughty/">[comments]</a></span></content><id>t3_10fmpd8</id><link href="https://www.reddit.com/r/awesomewm/comments/10fmpd8/how_to_run_default_action_in_naughty/" /><updated>2023-01-19T00:02:40+00:00</updated><published>2023-01-19T00:02:40+00:00</published><title>How to run "default" action in naughty?</title></entry><entry><author><name>/u/erich2k8</name><uri>https://www.reddit.com/user/erich2k8</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>I&#39;m aware of sloppy focus, which I&#39;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&#39;s not clear to me why both of these exist, btw. The limited description there would seem like they&#39;re mutually exclusive). Is there a way to disable this behavior and/or another way to get &quot;the screen with the focused window&quot;?</p> <p>Ideally, I really don&#39;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&#39;t even really know where the mouse cursor is most of the time unless I start moving it. I&#39;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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10fefzj/stop_screen_focus_from_following_mouse_not_window/">[comments]</a></span></content><id>t3_10fefzj</id><link href="https://www.reddit.com/r/awesomewm/comments/10fefzj/stop_screen_focus_from_following_mouse_not_window/" /><updated>2023-01-18T18:18:09+00:00</updated><published>2023-01-18T18:18:09+00:00</published><title>stop screen focus from following mouse (not window)</title></entry><entry><author><name>/u/lizard_king_421</name><uri>https://www.reddit.com/user/lizard_king_421</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>Title says it all. I&#39;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&#39;m sure the solution is simple, I just can&#39;t seem to find it in the documentation.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10eyh14/prevent_display_from_turning_off/">[comments]</a></span></content><id>t3_10eyh14</id><link href="https://www.reddit.com/r/awesomewm/comments/10eyh14/prevent_display_from_turning_off/" /><updated>2023-01-18T04:54:30+00:00</updated><published>2023-01-18T04:54:30+00:00</published><title>Prevent display from turning off</title></entry><entry><author><name>/u/AnyFaithlessness3277</name><uri>https://www.reddit.com/user/AnyFaithlessness3277</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>Why can&#39;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&#39;t work</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10f8nd3/cant_open_firefox/">[comments]</a></span></content><id>t3_10f8nd3</id><link href="https://www.reddit.com/r/awesomewm/comments/10f8nd3/cant_open_firefox/" /><updated>2023-01-18T14:26:43+00:00</updated><published>2023-01-18T14:26:43+00:00</published><title>Can't open Firefox</title></entry><entry><author><name>/u/Wise_Opportunity_857</name><uri>https://www.reddit.com/user/Wise_Opportunity_857</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- 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>&#x200B;</p> <p>this is what i get when i do this:</p> <p>&#x200B;</p> <p>awful.key({modkey}, &quot;Print&quot;, function()</p> <p>awful.util.spawn(&quot;scrot&quot;)</p> <p>end),</p> <p>&#x200B;</p> <p>why does it take 8 screenshots? does my end not work properly?</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10epa09/hotkey_for_scrot_screenshot_help/">[comments]</a></span></content><id>t3_10epa09</id><link href="https://www.reddit.com/r/awesomewm/comments/10epa09/hotkey_for_scrot_screenshot_help/" /><updated>2023-01-17T22:13:19+00:00</updated><published>2023-01-17T22:13:19+00:00</published><title>hotkey for scrot screenshot help</title></entry><entry><author><name>/u/craxing</name><uri>https://www.reddit.com/user/craxing</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>I&#39;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&#39;t like this before.</p> <p>Seems to behave like this even with default config.</p> <p>Can&#39;t change behavior of opening as full screen :(</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10ekimi/is_it_me_or_does_freetube_automatically_open_as/">[comments]</a></span></content><id>t3_10ekimi</id><link href="https://www.reddit.com/r/awesomewm/comments/10ekimi/is_it_me_or_does_freetube_automatically_open_as/" /><updated>2023-01-17T19:10:07+00:00</updated><published>2023-01-17T19:10:07+00:00</published><title>Is it me, or does FreeTube automatically open as full screen on awesomewm?</title></entry><entry><author><name>/u/brockcochran</name><uri>https://www.reddit.com/user/brockcochran</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>In my user&#39;s crontab, I have:</p> <pre><code>4 * * * * export DISPLAY=:0.0; awesome-client &#39;naughty = require(&quot;naughty&quot;) naughty.notify({text = &quot;This does not work.&quot;, timeout = 0})&#39; 4 * * * * export DISPLAY=:0.0; notify-send -t 0 &quot;This works.&quot; </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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10ehmmn/dbus_error_with_naughtynotify_in_crontab/">[comments]</a></span></content><id>t3_10ehmmn</id><link href="https://www.reddit.com/r/awesomewm/comments/10ehmmn/dbus_error_with_naughtynotify_in_crontab/" /><updated>2023-01-17T17:16:24+00:00</updated><published>2023-01-17T17:16:24+00:00</published><title>D-Bus error with naughty.notify in crontab</title></entry><entry><author><name>/u/gbneon</name><uri>https://www.reddit.com/user/gbneon</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- 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 &quot;alacritty -e yay -Syu&quot; and so on</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10edceb/set_a_key_or_keybinding_to_run_a_command/">[comments]</a></span></content><id>t3_10edceb</id><link href="https://www.reddit.com/r/awesomewm/comments/10edceb/set_a_key_or_keybinding_to_run_a_command/" /><updated>2023-01-17T14:17:30+00:00</updated><published>2023-01-17T14:17:30+00:00</published><title>Set a key or keybinding to run a command</title></entry><entry><author><name>/u/Redgabriel_13</name><uri>https://www.reddit.com/user/Redgabriel_13</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- 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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10drpmo/having_some_problems_switching_from_gnome_to/">[comments]</a></span></content><id>t3_10drpmo</id><link href="https://www.reddit.com/r/awesomewm/comments/10drpmo/having_some_problems_switching_from_gnome_to/" /><updated>2023-01-16T21:00:11+00:00</updated><published>2023-01-16T21:00:11+00:00</published><title>having some problems switching from gnome to awesome</title></entry><entry><author><name>/u/raven2cz</name><uri>https://www.reddit.com/user/raven2cz</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html">&#32; submitted by &#32; <a href="https://www.reddit.com/user/raven2cz"> /u/raven2cz </a> <br/> <span><a href="https://i.redd.it/9wojarz7p8ca1.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10cwnmm/awesomewm_dashboard_for_multicolor_theme/">[comments]</a></span></content><id>t3_10cwnmm</id><link href="https://www.reddit.com/r/awesomewm/comments/10cwnmm/awesomewm_dashboard_for_multicolor_theme/" /><updated>2023-01-15T22:14:04+00:00</updated><published>2023-01-15T22:14:04+00:00</published><title>[AwesomeWM] Dashboard for Multicolor Theme, Prototype I.</title></entry><entry><author><name>/u/mav36</name><uri>https://www.reddit.com/user/mav36</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- 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 = &quot;k&quot; }) 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(&quot;focus&quot;, update) c:connect_signal(&quot;unfocus&quot;, 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 &quot;w&quot; 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&#39;m doing wrong here, any tips are appreciated. Or maybe there&#39;s a better/simpler way to accomplish this?</p> </div><!-- SC_ON --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10cs8ue/titlebar_font_change_on_client_focus_works_on_43/">[comments]</a></span></content><id>t3_10cs8ue</id><link href="https://www.reddit.com/r/awesomewm/comments/10cs8ue/titlebar_font_change_on_client_focus_works_on_43/" /><updated>2023-01-15T19:19:25+00:00</updated><published>2023-01-15T19:19:25+00:00</published><title>titlebar font change on client focus works on 4.3 stable but not on awesome-git</title></entry><entry><author><name>/u/youyohn</name><uri>https://www.reddit.com/user/youyohn</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>Hello, I&#39;ve run into an interesting problem. I had a working awesomewm configuration, and I&#39;ve accidentally shut down the PC (by flipping the off switch on my extension cable I&#39;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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10cpgo6/black_screen_after_hard_reboot/">[comments]</a></span></content><id>t3_10cpgo6</id><link href="https://www.reddit.com/r/awesomewm/comments/10cpgo6/black_screen_after_hard_reboot/" /><updated>2023-01-15T17:29:53+00:00</updated><published>2023-01-15T17:29:53+00:00</published><title>Black screen after HARD reboot</title></entry><entry><author><name>/u/p8_g</name><uri>https://www.reddit.com/user/p8_g</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- 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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10bwd02/to_do_something_at_change_layout/">[comments]</a></span></content><id>t3_10bwd02</id><link href="https://www.reddit.com/r/awesomewm/comments/10bwd02/to_do_something_at_change_layout/" /><updated>2023-01-14T19:01:49+00:00</updated><published>2023-01-14T19:01:49+00:00</published><title>to do something at change layout</title></entry><entry><author><name>/u/InKeaton</name><uri>https://www.reddit.com/user/InKeaton</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- SC_OFF --><div class="md"><p>Hi.</p> <p>I really like having windows without the titlebars, but i realized that i&#39;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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10bv6cf/resizing_windows_without_titlebars/">[comments]</a></span></content><id>t3_10bv6cf</id><link href="https://www.reddit.com/r/awesomewm/comments/10bv6cf/resizing_windows_without_titlebars/" /><updated>2023-01-14T18:15:00+00:00</updated><published>2023-01-14T18:15:00+00:00</published><title>Resizing windows without titlebars</title></entry><entry><author><name>/u/MasterMach50</name><uri>https://www.reddit.com/user/MasterMach50</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- 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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10brt5q/how_to_create_an_overlay_like_non_interactive/">[comments]</a></span></content><id>t3_10brt5q</id><link href="https://www.reddit.com/r/awesomewm/comments/10brt5q/how_to_create_an_overlay_like_non_interactive/" /><updated>2023-01-14T15:57:32+00:00</updated><published>2023-01-14T15:57:32+00:00</published><title>How to create an overlay like non interactive window</title></entry><entry><author><name>/u/Strazil</name><uri>https://www.reddit.com/user/Strazil</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html">&#32; submitted by &#32; <a href="https://www.reddit.com/user/Strazil"> /u/Strazil </a> <br/> <span><a href="https://i.redd.it/8xe5dwn2ovba1.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10b5yhk/came_from_xmonad_to_awesomewm_and_i_love_it/">[comments]</a></span></content><id>t3_10b5yhk</id><link href="https://www.reddit.com/r/awesomewm/comments/10b5yhk/came_from_xmonad_to_awesomewm_and_i_love_it/" /><updated>2023-01-13T21:22:34+00:00</updated><published>2023-01-13T21:22:34+00:00</published><title>Came from Xmonad to AwesomeWM and i love it!</title></entry><entry><author><name>/u/InKeaton</name><uri>https://www.reddit.com/user/InKeaton</uri></author><category term="awesomewm" label="r/awesomewm"/><content type="html"><!-- 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&#39;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 --> &#32; submitted by &#32; <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> &#32; <span><a href="https://www.reddit.com/r/awesomewm/comments/10blyrx/how_to_use_decorationsenable_rounding/">[comments]</a></span></content><id>t3_10blyrx</id><link href="https://www.reddit.com/r/awesomewm/comments/10blyrx/how_to_use_decorationsenable_rounding/" /><updated>2023-01-14T11:05:42+00:00</updated><published>2023-01-14T11:05:42+00:00</published><title>How to use decorations.enable_rounding()</title></entry></feed> |