all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* National keyboard layout for Polish
@ 2019-04-12 22:05 Adam Mazurkiewicz
  2019-04-17 21:08 ` Ludovic Courtès
  0 siblings, 1 reply; 11+ messages in thread
From: Adam Mazurkiewicz @ 2019-04-12 22:05 UTC (permalink / raw)
  To: help-guix

How to set Polish keyboard layout to get Polish special letters?
https://dailyweb.pl/wp-content/uploads/2016/11/zazolc.png
They should be available in Gedit, Web browser address bar, etc. I
have Xfce Desktop Environment.


--
trzczy

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

* Re: National keyboard layout for Polish
  2019-04-12 22:05 National keyboard layout for Polish Adam Mazurkiewicz
@ 2019-04-17 21:08 ` Ludovic Courtès
  2019-04-18 19:24   ` Quiliro Ordonez
  0 siblings, 1 reply; 11+ messages in thread
From: Ludovic Courtès @ 2019-04-17 21:08 UTC (permalink / raw)
  To: Adam Mazurkiewicz; +Cc: help-guix

Hello,

Adam Mazurkiewicz <trzczy@gmail.com> skribis:

> How to set Polish keyboard layout to get Polish special letters?
> https://dailyweb.pl/wp-content/uploads/2016/11/zazolc.png
> They should be available in Gedit, Web browser address bar, etc. I
> have Xfce Desktop Environment.

With the new keyboard layout mechanism, I believe you could get it with:

  (keyboard-layout "pl")

Try running:

  info "(guix) Keyboard Layout"

to read on how to use it.

HTH!

Ludo’.

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

* Re: National keyboard layout for Polish
  2019-04-17 21:08 ` Ludovic Courtès
@ 2019-04-18 19:24   ` Quiliro Ordonez
  2019-04-18 19:37     ` Quiliro Ordonez
  2019-04-18 19:42     ` Andreas Enge
  0 siblings, 2 replies; 11+ messages in thread
From: Quiliro Ordonez @ 2019-04-18 19:24 UTC (permalink / raw)
  To: help-guix

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

El 2019-04-17 21:08, Ludovic Courtès escribió:
> Hello,
> 
> Adam Mazurkiewicz <trzczy@gmail.com> skribis:
> 
>> How to set Polish keyboard layout to get Polish special letters?
>> https://dailyweb.pl/wp-content/uploads/2016/11/zazolc.png
>> They should be available in Gedit, Web browser address bar, etc. I
>> have Xfce Desktop Environment.
> 
> With the new keyboard layout mechanism, I believe you could get it with:
> 
>   (keyboard-layout "pl")
> 
> Try running:
> 
>   info "(guix) Keyboard Layout"
> 
> to read on how to use it.
> 
> HTH!
> 
> Ludo’.

I get this error with 'guix system reconfigure desktop-full-dvorak.scm'.

/home/quiliro/desktop-full-dvorak.scm:72:12: error:
set-xorg-configuration: unbound variable
hint: Did you forget `(use-modules (gnu services xorg))'?

The file is attached.

[-- Attachment #2: desktop-full-dvorak.scm --]
[-- Type: text/plain, Size: 2576 bytes --]

;; This is an operating system configuration template
;; for a "desktop" setup with GNOME and Xfce

(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules certs gnome)

(operating-system
 (host-name "GSD3")
 (timezone "America/Guayaquil")
 (locale "es_EC.UTF-8")
 (keyboard-layout (keyboard-layout "es" "dvorak"))  ;for the console
 
 ;; Use the BIOS variant of GRUB
 (bootloader (bootloader-configuration
              (bootloader grub-bootloader)
              (target "/dev/sda")
	      (keyboard-layout keyboard-layout))) ;for GRUB
 
 (file-systems (cons*
		(file-system
		 (device (uuid "021e4962-a7e2-4996-a2d7-b746df956172"))
		 (mount-point "/")
		 (type "ext4"))
		(file-system
		 (device (uuid "6e8ca224-ab9b-476b-98b0-c0b22a172577"))
		 (mount-point "/home/quiliro/respaldos")
		 (type "ext4"))
                %base-file-systems))
 
 (swap-devices '("/dev/sda1"))
 
 (users (cons*
	 (user-account
	  (name "quiliro")
          (comment "Quiliro Ordóñez")
          (group "users")
          (supplementary-groups '("wheel" "netdev" "audio" "video"))
          (home-directory "/home/quiliro"))
	 (user-account
	  (name "analucia")
          (comment "Ana Lucia Barahona Escalante")
          (group "users")
          (supplementary-groups '("netdev" "audio" "video"))
          (home-directory "/home/analucia"))
	 (user-account
	  (name "invitado")
          (comment "Usuario invitado")
          (group "users")
          (supplementary-groups '("netdev" "audio" "video"))
          (home-directory "/home/invitado"))
	 (user-account
	  (name "saslibre")
          (comment "Servicios Académicos y de Software Libre")
          (group "users")
          (supplementary-groups '("wheel" "netdev" "audio" "video"))
          (home-directory "/home/saslibre"))
         %base-user-accounts))
 
 ;; This is where we specify system-wide packages.
 (packages (append (list
		    nss-certs          ;for HTTPS access
		    gvfs)              ;for user mounts
		   %base-packages))

 ;; Add GNOME and/or Xfce---we can choose at the log-in
 ;; screen with F1.  Use the "desktop" services, which
 ;; include the X11 log-in service, networking with
 ;; NetworkManager, and more.
 (services (cons*
	    (service gnome-desktop-service-type)
            (service xfce-desktop-service-type)
	    (set-xorg-configuration
	     (xorg-configuration             ;for Xorg
	      (keyboard-layout keyboard-layout)))
	    %desktop-services))
 
 ;; Allow resolution of '.local' host names with mDNS.
 (name-service-switch %mdns-host-lookup-nss))

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

* Re: National keyboard layout for Polish
  2019-04-18 19:24   ` Quiliro Ordonez
@ 2019-04-18 19:37     ` Quiliro Ordonez
  2019-04-18 19:42     ` Andreas Enge
  1 sibling, 0 replies; 11+ messages in thread
From: Quiliro Ordonez @ 2019-04-18 19:37 UTC (permalink / raw)
  To: help-guix

El 2019-04-18 19:24, Quiliro Ordonez escribió:
> El 2019-04-17 21:08, Ludovic Courtès escribió:
>> Hello,
>>
>> Adam Mazurkiewicz <trzczy@gmail.com> skribis:
>>
>>> How to set Polish keyboard layout to get Polish special letters?
>>> https://dailyweb.pl/wp-content/uploads/2016/11/zazolc.png
>>> They should be available in Gedit, Web browser address bar, etc. I
>>> have Xfce Desktop Environment.
>>
>> With the new keyboard layout mechanism, I believe you could get it with:
>>
>>   (keyboard-layout "pl")
>>
>> Try running:
>>
>>   info "(guix) Keyboard Layout"
>>
>> to read on how to use it.
>>
>> HTH!
>>
>> Ludo’.
> 
> I get this error with 'guix system reconfigure desktop-full-dvorak.scm'.
> 
> /home/quiliro/desktop-full-dvorak.scm:72:12: error:
> set-xorg-configuration: unbound variable
> hint: Did you forget `(use-modules (gnu services xorg))'?
> 
> The file is attached.

Mi trovis ĉi tion eraron per 'guix system reconfigure
desktop-full-dvorak.scm':

/home/quiliro/desktop-full-dvorak.scm:72:12: error:
set-xorg-configuration: unbound variable
hint: Did you forget `(use-modules (gnu services xorg))'?

La arĉivo estas ĉi-kune.

Pardonu min por la gramatika eraroj.

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

* Re: National keyboard layout for Polish
  2019-04-18 19:24   ` Quiliro Ordonez
  2019-04-18 19:37     ` Quiliro Ordonez
@ 2019-04-18 19:42     ` Andreas Enge
  2019-04-19  2:16       ` Quiliro Ordonez
  2019-04-19 12:13       ` Ludovic Courtès
  1 sibling, 2 replies; 11+ messages in thread
From: Andreas Enge @ 2019-04-18 19:42 UTC (permalink / raw)
  To: quiliro; +Cc: help-guix

Hello,

On Thu, Apr 18, 2019 at 12:24:41PM -0700, Quiliro Ordonez wrote:
> /home/quiliro/desktop-full-dvorak.scm:72:12: error:
> set-xorg-configuration: unbound variable
> hint: Did you forget `(use-modules (gnu services xorg))'?
> 
> (use-service-modules desktop)

You probably need to replace this line by
(use-service-modules desktop xorg)

Andreas

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

* Re: National keyboard layout for Polish
  2019-04-18 19:42     ` Andreas Enge
@ 2019-04-19  2:16       ` Quiliro Ordonez
  2019-04-19 12:13       ` Ludovic Courtès
  1 sibling, 0 replies; 11+ messages in thread
From: Quiliro Ordonez @ 2019-04-19  2:16 UTC (permalink / raw)
  To: help-guix

El 2019-04-18 19:42, Andreas Enge escribió:
> Hello,
> 
> On Thu, Apr 18, 2019 at 12:24:41PM -0700, Quiliro Ordonez wrote:
>> /home/quiliro/desktop-full-dvorak.scm:72:12: error:
>> set-xorg-configuration: unbound variable
>> hint: Did you forget `(use-modules (gnu services xorg))'?
>>
>> (use-service-modules desktop)
> 
> You probably need to replace this line by
> (use-service-modules desktop xorg)

Thank you Andreas. It worked well.

Dankon Andreas. Ĝi funkciis bone.

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

* Re: National keyboard layout for Polish
  2019-04-18 19:42     ` Andreas Enge
  2019-04-19  2:16       ` Quiliro Ordonez
@ 2019-04-19 12:13       ` Ludovic Courtès
  2019-04-20 18:16         ` Quiliro Ordonez
  1 sibling, 1 reply; 11+ messages in thread
From: Ludovic Courtès @ 2019-04-19 12:13 UTC (permalink / raw)
  To: Andreas Enge; +Cc: quiliro, help-guix

Andreas Enge <andreas@enge.fr> skribis:

> On Thu, Apr 18, 2019 at 12:24:41PM -0700, Quiliro Ordonez wrote:
>> /home/quiliro/desktop-full-dvorak.scm:72:12: error:
>> set-xorg-configuration: unbound variable
>> hint: Did you forget `(use-modules (gnu services xorg))'?
>> 
>> (use-service-modules desktop)
>
> You probably need to replace this line by
> (use-service-modules desktop xorg)

Or even just (use-modules (gnu services xorg)) as suggested.  :-)

Ludo’.

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

* Re: National keyboard layout for Polish
  2019-04-19 12:13       ` Ludovic Courtès
@ 2019-04-20 18:16         ` Quiliro Ordonez
  2019-04-20 18:21           ` Quiliro Ordonez
  0 siblings, 1 reply; 11+ messages in thread
From: Quiliro Ordonez @ 2019-04-20 18:16 UTC (permalink / raw)
  To: help-guix

El 2019-04-19 12:13, Ludovic Courtès escribió:
> Andreas Enge <andreas@enge.fr> skribis:
> 
>> On Thu, Apr 18, 2019 at 12:24:41PM -0700, Quiliro Ordonez wrote:
>>> /home/quiliro/desktop-full-dvorak.scm:72:12: error:
>>> set-xorg-configuration: unbound variable
>>> hint: Did you forget `(use-modules (gnu services xorg))'?
>>>
>>> (use-service-modules desktop)
>>
>> You probably need to replace this line by
>> (use-service-modules desktop xorg)
> 
> Or even just (use-modules (gnu services xorg)) as suggested.  :-)

Dankon, Ludo’. Mi ne sciis kiel aldoni ĝin.

Mi havis:
(use-service-modules desktop)
Mi modifis ĝin ĉi tie:

Mi havas:
(use-modules (gnu) (gnu system nss))
Çu vi proponas eble modifi ĝin ci tie?:
(use-modules (gnu services xorg) (gnu system nss))

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

* Re: National keyboard layout for Polish
  2019-04-20 18:16         ` Quiliro Ordonez
@ 2019-04-20 18:21           ` Quiliro Ordonez
  2019-04-21 12:36             ` Ludovic Courtès
  0 siblings, 1 reply; 11+ messages in thread
From: Quiliro Ordonez @ 2019-04-20 18:21 UTC (permalink / raw)
  To: help-guix

El 2019-04-20 18:16, Quiliro Ordonez escribió:
> El 2019-04-19 12:13, Ludovic Courtès escribió:
>> Andreas Enge <andreas@enge.fr> skribis:
>>
>>> On Thu, Apr 18, 2019 at 12:24:41PM -0700, Quiliro Ordonez wrote:
>>>> /home/quiliro/desktop-full-dvorak.scm:72:12: error:
>>>> set-xorg-configuration: unbound variable
>>>> hint: Did you forget `(use-modules (gnu services xorg))'?
>>>>
>>>> (use-service-modules desktop)
>>>
>>> You probably need to replace this line by
>>> (use-service-modules desktop xorg)
>>
>> Or even just (use-modules (gnu services xorg)) as suggested.  :-)
> 
> Dankon, Ludo’. Mi ne sciis kiel aldoni ĝin.
> 
> Mi havis:
> (use-service-modules desktop)
> Mi modifis ĝin ĉi tie:
> 
> Mi havas:
> (use-modules (gnu) (gnu system nss))
> Çu vi proponas eble modifi ĝin ci tie?:
> (use-modules (gnu services xorg) (gnu system nss))

Çu aŭ?:
(use-modules (gnu) (gnu system nss) (gnu services xorg))

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

* Re: National keyboard layout for Polish
  2019-04-20 18:21           ` Quiliro Ordonez
@ 2019-04-21 12:36             ` Ludovic Courtès
  2019-04-21 18:03               ` Quiliro Ordonez
  0 siblings, 1 reply; 11+ messages in thread
From: Ludovic Courtès @ 2019-04-21 12:36 UTC (permalink / raw)
  To: Quiliro Ordonez; +Cc: help-guix

Quiliro Ordonez <quiliro@riseup.net> skribis:

> El 2019-04-20 18:16, Quiliro Ordonez escribió:
>> El 2019-04-19 12:13, Ludovic Courtès escribió:
>>> Andreas Enge <andreas@enge.fr> skribis:
>>>
>>>> On Thu, Apr 18, 2019 at 12:24:41PM -0700, Quiliro Ordonez wrote:
>>>>> /home/quiliro/desktop-full-dvorak.scm:72:12: error:
>>>>> set-xorg-configuration: unbound variable
>>>>> hint: Did you forget `(use-modules (gnu services xorg))'?
>>>>>
>>>>> (use-service-modules desktop)
>>>>
>>>> You probably need to replace this line by
>>>> (use-service-modules desktop xorg)
>>>
>>> Or even just (use-modules (gnu services xorg)) as suggested.  :-)
>> 
>> Dankon, Ludo’. Mi ne sciis kiel aldoni ĝin.
>> 
>> Mi havis:
>> (use-service-modules desktop)
>> Mi modifis ĝin ĉi tie:
>> 
>> Mi havas:
>> (use-modules (gnu) (gnu system nss))
>> Çu vi proponas eble modifi ĝin ci tie?:
>> (use-modules (gnu services xorg) (gnu system nss))
>
> Çu aŭ?:
> (use-modules (gnu) (gnu system nss) (gnu services xorg))

Jes, ĝi devus funkcii.

Ludo'.

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

* Re: National keyboard layout for Polish
  2019-04-21 12:36             ` Ludovic Courtès
@ 2019-04-21 18:03               ` Quiliro Ordonez
  0 siblings, 0 replies; 11+ messages in thread
From: Quiliro Ordonez @ 2019-04-21 18:03 UTC (permalink / raw)
  To: help-guix

El 2019-04-21 12:36, Ludovic Courtès escribió:
> Quiliro Ordonez <quiliro@riseup.net> skribis:
> 
>> El 2019-04-20 18:16, Quiliro Ordonez escribió:
>>> El 2019-04-19 12:13, Ludovic Courtès escribió:
>>>> Andreas Enge <andreas@enge.fr> skribis:
>>>>
>>>>> On Thu, Apr 18, 2019 at 12:24:41PM -0700, Quiliro Ordonez wrote:
>>>>>> /home/quiliro/desktop-full-dvorak.scm:72:12: error:
>>>>>> set-xorg-configuration: unbound variable
>>>>>> hint: Did you forget `(use-modules (gnu services xorg))'?
>>>>>>
>>>>>> (use-service-modules desktop)
>>>>>
>>>>> You probably need to replace this line by
>>>>> (use-service-modules desktop xorg)
>>>>
>>>> Or even just (use-modules (gnu services xorg)) as suggested.  :-)
>>>
>>> Dankon, Ludo’. Mi ne sciis kiel aldoni ĝin.
>>>
>>> Mi havis:
>>> (use-service-modules desktop)
>>> Mi modifis ĝin ĉi tie:
>>>
>>> Mi havas:
>>> (use-modules (gnu) (gnu system nss))
>>> Çu vi proponas eble modifi ĝin ci tie?:
>>> (use-modules (gnu services xorg) (gnu system nss))
>>
>> Çu aŭ?:
>> (use-modules (gnu) (gnu system nss) (gnu services xorg))
> 
> Jes, ĝi devus funkcii.

Dankon. Donc, ¿ĉu la antaŭa ne funcias bone?:
(use-modules (gnu services xorg) (gnu system nss))

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

end of thread, other threads:[~2019-04-21 18:06 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-12 22:05 National keyboard layout for Polish Adam Mazurkiewicz
2019-04-17 21:08 ` Ludovic Courtès
2019-04-18 19:24   ` Quiliro Ordonez
2019-04-18 19:37     ` Quiliro Ordonez
2019-04-18 19:42     ` Andreas Enge
2019-04-19  2:16       ` Quiliro Ordonez
2019-04-19 12:13       ` Ludovic Courtès
2019-04-20 18:16         ` Quiliro Ordonez
2019-04-20 18:21           ` Quiliro Ordonez
2019-04-21 12:36             ` Ludovic Courtès
2019-04-21 18:03               ` Quiliro Ordonez

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.