unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#34152: awesome crashes on reload
@ 2019-01-21  6:26 Bradley Haggerty
  2023-10-04 18:29 ` Simon Tournier
  0 siblings, 1 reply; 4+ messages in thread
From: Bradley Haggerty @ 2019-01-21  6:26 UTC (permalink / raw)
  To: 34152

[-- Attachment #1: Type: text/plain, Size: 503 bytes --]

When trying to reload awesome window manager in-place, it restarts X and
sends me back to the graphical login. It's only supposed to flash for a
second and not even kill any programs. Sometimes I'm able to see something
like "login command failed" printed on the screen.

To recreate this, install the "awesome" package, log in to it, and either
press control-super-r or open the menu in the top left and go to awesome ->
restart.

guix version:
guix (GNU Guix) 1c17adbc7957d024158948a853f4fbc22e52a0f6

[-- Attachment #2: Type: text/html, Size: 637 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#34152: awesome crashes on reload
  2019-01-21  6:26 bug#34152: awesome crashes on reload Bradley Haggerty
@ 2023-10-04 18:29 ` Simon Tournier
  2023-10-04 18:54   ` Bradley Haggerty
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Tournier @ 2023-10-04 18:29 UTC (permalink / raw)
  To: Bradley Haggerty; +Cc: 34152

Hi,

Sorry, it seems this report #34152 [1] ell into the cracks.

1: https://issues.guix.gnu.org/issue/34152

On Mon, 21 Jan 2019 at 06:26, Bradley Haggerty <bradigger@gmail.com> wrote:
> When trying to reload awesome window manager in-place, it restarts X and sends me back to the graphical login. It's
> only supposed to flash for a second and not even kill any programs. Sometimes I'm able to see something like "login
> command failed" printed on the screen.
>
> To recreate this, install the "awesome" package, log in to it, and either press control-super-r or open the menu in the top
> left and go to awesome -> restart.
>
> guix version:
> guix (GNU Guix) 1c17adbc7957d024158948a853f4fbc22e52a0f6

Is it still the case for you?


Cheers,
simon




^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#34152: awesome crashes on reload
  2023-10-04 18:29 ` Simon Tournier
@ 2023-10-04 18:54   ` Bradley Haggerty
  2023-10-11 13:07     ` Simon Tournier
  0 siblings, 1 reply; 4+ messages in thread
From: Bradley Haggerty @ 2023-10-04 18:54 UTC (permalink / raw)
  To: Simon Tournier; +Cc: 34152

On Wed Oct 4, 2023 at 1:29 PM CDT, Simon Tournier wrote:
> Hi,
>
> Sorry, it seems this report #34152 [1] ell into the cracks.
>
> 1: https://issues.guix.gnu.org/issue/34152
>
> On Mon, 21 Jan 2019 at 06:26, Bradley Haggerty <bradigger@gmail.com> wrote:
> > When trying to reload awesome window manager in-place, it restarts X and sends me back to the graphical login. It's
> > only supposed to flash for a second and not even kill any programs. Sometimes I'm able to see something like "login
> > command failed" printed on the screen.
> >
> > To recreate this, install the "awesome" package, log in to it, and either press control-super-r or open the menu in the top
> > left and go to awesome -> restart.
> >
> > guix version:
> > guix (GNU Guix) 1c17adbc7957d024158948a853f4fbc22e52a0f6
>
> Is it still the case for you?
>
>
> Cheers,
> simon

I've since moved to Sway and am planning to stick with Wayland. I don't
recall the issue ever being fixed while I was still using awesomewm, but
not sure if it works now. Should be easy enough to test if someone was
interested. I'm fine with this being closed since I'm no longer using
awesomewm.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#34152: awesome crashes on reload
  2023-10-04 18:54   ` Bradley Haggerty
@ 2023-10-11 13:07     ` Simon Tournier
  0 siblings, 0 replies; 4+ messages in thread
From: Simon Tournier @ 2023-10-11 13:07 UTC (permalink / raw)
  To: Bradley Haggerty; +Cc: 34152-done

Hi,

On Wed, 04 Oct 2023 at 13:54, "Bradley Haggerty" <bradigger@gmail.com> wrote:

>> > To recreate this, install the "awesome" package, log in to it, and either press control-super-r or open the menu in the top
>> > left and go to awesome -> restart.
>> >
>> > guix version:
>> > guix (GNU Guix) 1c17adbc7957d024158948a853f4fbc22e52a0f6

> I've since moved to Sway and am planning to stick with Wayland. I don't
> recall the issue ever being fixed while I was still using awesomewm, but
> not sure if it works now. Should be easy enough to test if someone was
> interested. I'm fine with this being closed since I'm no longer using
> awesomewm.

Using Guix 6113e05 and configuration below (adding ’awesome’ in
gnu/system/examples/lightweight-desktop.tmpl), I am not able to
reproduce.  Therefore, I am closing.

If someone has more information and also hits this bug, please reopen.

Cheers,
simon

--8<---------------cut here---------------start------------->8---
;; -*- mode: scheme; -*-
;; This is an operating system configuration template
;; for a "desktop" setup without full-blown desktop
;; environments.

(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules bootloaders certs emacs emacs-xyz ratpoison suckless wm
                     xorg)

(operating-system
  (host-name "antelope")
  (timezone "Europe/Paris")
  (locale "en_US.utf8")

  ;; Use the UEFI variant of GRUB with the EFI System
  ;; Partition mounted on /boot/efi.
  (bootloader (bootloader-configuration
                (bootloader grub-efi-bootloader)
                (targets '("/boot/efi"))))

  ;; Assume the target root file system is labelled "my-root",
  ;; and the EFI System Partition has UUID 1234-ABCD.
  (file-systems (append
                 (list (file-system
                         (device (file-system-label "my-root"))
                         (mount-point "/")
                         (type "ext4"))
                       (file-system
                         (device (uuid "1234-ABCD" 'fat))
                         (mount-point "/boot/efi")
                         (type "vfat")))
                 %base-file-systems))

  (users (cons (user-account
                (name "alice")
                (comment "Bob's sister")
                (group "users")
                (supplementary-groups '("wheel" "netdev"
                                        "audio" "video")))
               %base-user-accounts))

  ;; Add a bunch of window managers; we can choose one at
  ;; the log-in screen with F1.
  (packages (append (list
                     ;; window managers
                     ratpoison i3-wm i3status dmenu
                     emacs emacs-exwm emacs-desktop-environment
                     awesome
                     ;; terminal emulator
                     xterm
                     ;; for HTTPS access
                     nss-certs)
                    %base-packages))

  ;; Use the "desktop" services, which include the X11
  ;; log-in service, networking with NetworkManager, and more.
  (services %desktop-services)

  ;; Allow resolution of '.local' host names with mDNS.
  (name-service-switch %mdns-host-lookup-nss))
--8<---------------cut here---------------end--------------->8---




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-10-11 14:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-21  6:26 bug#34152: awesome crashes on reload Bradley Haggerty
2023-10-04 18:29 ` Simon Tournier
2023-10-04 18:54   ` Bradley Haggerty
2023-10-11 13:07     ` Simon Tournier

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).