[qubes-users] X Startup Failed, Aborting Installation. Pane is Dead.

2020-05-28 Thread dennisjmenzel
Full transparency, I’m completely new to Qubes. So treat me like I’m an idiot. 

I’ve dd’d the iso onto my usb 3.0 drive using Rufus.

When I run the installer legacy it opens the installer GUI. 

I’ve tried:
• regular install of R4.0.3. 
• test this media and install Qubes R4.0.3
• ran UEFI text only installer. 
• different usb drives. (But same brand.)
• different USB ports 

Always, I get the message:
X startup failed, aborting installation. 

Any help would be greatly appreciated! Thanks so much!

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/530524f9-9258-4d28-a46f-8e61af1004e5%40googlegroups.com.


[qubes-users] Multiple X sessions in Dom0?

2020-05-28 Thread brendan . hoar
Can Qubes support multiple X sessions in dom0? 

e.g. default session on primary terminal (via ctrl-alt-f1), then start 
another session on the third pty (ctrl-alt-f3) after logging in as the 
primary qubes user in dom0?

B

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/0a1e00b8-fd1f-4e09-85b7-058825e3176a%40googlegroups.com.


[qubes-users] Re: Libreoffice Calc windowsize is 1x1 cm ..

2020-05-28 Thread palette999


Am Donnerstag, 28. Mai 2020 20:34:45 UTC+2 schrieb Dave:
>
> Ok thanks for the tip, i just tested you suggestion and it resizes the 
> window perfectly.
> Do you autostart devilspie2 at boot .. or how do you use it ..?
>
>
 I start it via .desktop file in .config/autostart.

It really is a handy tool. I use it for other things like mapping domains 
to certain workspaces.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/3e39d011-8d2b-474e-818a-ed0b6058ef40%40googlegroups.com.


[qubes-users] Re: Libreoffice Calc windowsize is 1x1 cm ..

2020-05-28 Thread Dave
Ok thanks for the tip, i just tested you suggestion and it resizes the 
window perfectly.
Do you autostart devilspie2 at boot .. or how do you use it ..?

On Thursday, 28 May 2020 18:11:14 UTC+2, palet...@gmail.com wrote:
>
>
>
> Am Montag, 25. Mai 2020 21:19:03 UTC+2 schrieb Dave:
>>
>> When i open libreoffice Calc in my work vm, the only thing i can see of 
>> the window is the "X" mark of the window.
>> So the window opens up like 1x1cm.. When i drag it bigger to a normal 
>> window size and restart calc, its back to a little 1x1 cm box and just 
>> showing the close window 'X'..
>> How can i get calc to open up normal window size ..?
>>
>
> I had the same problem. I used devilspie2 to solve it.
>
> Install it to dom0:
> sudo qubes-dom0-update devilspie2
>
> then create a .lua file in .config/devilspie2 with the following text:
>
> window = "LibreOffice";
> windowname = get_window_name();
> if (string.match(windowname, window)) then
> maximize();
> end
>  
> Here is a nice tutorial about devilspie2, if you are interested: 
> https://www.linux-magazine.com/Issues/2017/205/Tutorial-Devilspie2
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/f40af9ee-3b1c-4e6d-a1ff-bfa9e0619662%40googlegroups.com.


[qubes-users] Updating sys-usb template

2020-05-28 Thread Zbigniew Łukasiak
My sys-usb uses a very old template. I tried some googling - but
failed to find any advice about update it without locking me out of
the system.
I guess I could remove it - there is a description on how to do that
in https://www.qubes-os.org/doc/usb-qubes/ - and then add it again
with a new template. But it is kind of complicated and looks
dangerous.

-- 
Zbigniew Lukasiak
https://medium.com/@zby
http://brudnopis.blogspot.com/

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/CAGL_UUtLXaNv%2Bs3L738sdSsA_eKv4cW15_2HvQhNugUHLT3Fag%40mail.gmail.com.


[qubes-users] Re: Libreoffice Calc windowsize is 1x1 cm ..

2020-05-28 Thread palette999


Am Montag, 25. Mai 2020 21:19:03 UTC+2 schrieb Dave:
>
> When i open libreoffice Calc in my work vm, the only thing i can see of 
> the window is the "X" mark of the window.
> So the window opens up like 1x1cm.. When i drag it bigger to a normal 
> window size and restart calc, its back to a little 1x1 cm box and just 
> showing the close window 'X'..
> How can i get calc to open up normal window size ..?
>

I had the same problem. I used devilspie2 to solve it.

Install it to dom0:
sudo qubes-dom0-update devilspie2

then create a .lua file in .config/devilspie2 with the following text:

window = "LibreOffice";
windowname = get_window_name();
if (string.match(windowname, window)) then
maximize();
end
 
Here is a nice tutorial about devilspie2, if you are interested: 
https://www.linux-magazine.com/Issues/2017/205/Tutorial-Devilspie2

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/d9ba993c-f46c-4f0f-86c1-f82232ceacaf%40googlegroups.com.


[qubes-users] Managing appvm apps from dom0

2020-05-28 Thread Dave
Is there a way to assign apps to appvm's from dom0.. ? Or is only possible to 
do it manual in appvm settings/applications ...?

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/3b8750d5-ef54-4051-a418-545fef6e5980%40googlegroups.com.


Re: [qubes-users] salt - dependencies in scripts

2020-05-28 Thread Manuel Amador (Rudd-O)
You can't use a `require` statement in the top file.  They only work in
SLS files.

On 23/05/2020 01.19, lik...@gmx.de wrote:
> Hi!
>
> As salt is the recommended way to manage the Appms and templates, I'm
> trying to do so.
>
> I successfully managed to create a top-script:
>
> base:
>  dom0:
>   - match: nodegroup
>   - create-template
>   - create-appvm-for-template
>
>  'created-template':
>    - install-pkgs
>    - modify_config
>    - require: dom0
>
> Unfortunately, the script fails on the first run, because step 2.
> requires step 1. done. "Require" seems not to work here. After the
> second run, everything is fine.
>
> Any hints highly appreciated. :)
>
> Best, P
>

-- 
Rudd-O
http://rudd-o.com/

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/1df190a5-333d-61f1-4a5c-914f1d8932e3%40rudd-o.com.


Re: [qubes-users] Shutdown qubes on laptop lid closed

2020-05-28 Thread Mike Keehan

On 5/28/20 12:33 PM, Dave wrote:

Hey mark,

i can choose several options, but shutdown isnt an option to choosen for 
lid close action ..

Is there a way to add it ..?

Regards

On Thursday, 28 May 2020 12:55:43 UTC+2, Mike Keehan wrote:



On 5/28/20 10:22 AM, Dave wrote:
 > Hey guys,
 >
 > How can i change the lid close action in qubes, so the laptop
shuts down
 > when i close the lid ..?
 >
 > Thanks in advance
 >
 > Dave
 > Power Manager Settings
Power Manager Settings.

--
You received this message because you are subscribed to the Google 
Groups "qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to qubes-users+unsubscr...@googlegroups.com 
.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/f366312a-92cb-476c-bf14-ee4663806a13%40googlegroups.com 
.


You may find that setting it to Hibernate may actually turn it off.

--
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/82405aad-93fc-82c4-eb50-90cceb0233c9%40keehan.net.


[qubes-users] created a new Telegram chat group "QubesOS Benutzer Deutschsprachig"

2020-05-28 Thread Peter Funk
Hi,

I've created a new Telegram (see https://www.telegram.org/ for more info)
chat group for german speaking users of QubesOS since AFAIK there was no
such group until now.

If you are german speaking user of QubesOS or planning to use QubesOS 
in the future you are invited to join this group: https://t.me/QubesOS_user_de

The same again in German:

Ich habe eine neue Telegram Gruppe angelegt für deutschsprechende Benutzer
von QubesOS, da es so weit ich weiß bisher keine solche Gruppe gab.

Wenn Du ein deutsch sprechender Benutzer von QubesOS bist oder planst
in der Zukunft QubesOS zu benutzen bist Du eingeladen, Dich dieser 
Gruppe anzuschließen: https://t.me/QubesOS_user_de 

Liebe Grüße, Peter Funk
-- 
Peter Funk ✉:Oldenburger Str.86, 2 Ganderkesee, Germany; :+49-179-640-8878 

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/20200528134721.GA24874%40pfmaster-P170EM.


signature.asc
Description: Digital signature


Re: [qubes-users] Qubes colored border title text

2020-05-28 Thread Lorenzo Lamas


On Thursday, May 21, 2020 at 2:49:30 PM UTC+2, unman wrote:
>
> On Thu, May 21, 2020 at 05:43:55AM -0700, Lorenzo Lamas wrote: 
> > After a Dom0 update, most of the window titles in the Qubes colored 
> borders 
> > are now in a black font, instead of the old white. Is this intentional, 
> and 
> > if so, is it possible for users to manually set it to white again. It 
> looks 
> > really ugly with most colors.(I use the Nodoka style for Window manager, 
> > which was afaik default in an older Qubes release, the new default is 
> > really ugly.) 
> > 
>
> It was intentional and is subject of much debate at github - changes are 
> in pipeline. 
>

Thanks for the explanation! 

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/080907c6-2d84-4275-892a-1c73e926004b%40googlegroups.com.


Re: [qubes-users] Shutdown qubes on laptop lid closed

2020-05-28 Thread Mike Keehan

On 5/28/20 12:33 PM, Dave wrote:

Hey mark,

i can choose several options, but shutdown isnt an option to choosen for 
lid close action ..

Is there a way to add it ..?

Regards

On Thursday, 28 May 2020 12:55:43 UTC+2, Mike Keehan wrote:



On 5/28/20 10:22 AM, Dave wrote:
 > Hey guys,
 >
 > How can i change the lid close action in qubes, so the laptop
shuts down
 > when i close the lid ..?
 >
 > Thanks in advance
 >
 > Dave
 > Power Manager Settings
Power Manager Settings.



Hm, you're right.  I wonder when that changed.

I had a look online, but can't find anything that brings the option
back, sorry.

Mike.

--
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/bc89a13e-f1ea-8451-2098-5cbf61ff9206%40keehan.net.


Re: [qubes-users] Shutdown qubes on laptop lid closed

2020-05-28 Thread Dave
Hey mark,

i can choose several options, but shutdown isnt an option to choosen for 
lid close action ..
Is there a way to add it ..?

Regards

On Thursday, 28 May 2020 12:55:43 UTC+2, Mike Keehan wrote:
>
>
>
> On 5/28/20 10:22 AM, Dave wrote: 
> > Hey guys, 
> > 
> > How can i change the lid close action in qubes, so the laptop shuts down 
> > when i close the lid ..? 
> > 
> > Thanks in advance 
> > 
> > Dave 
> > Power Manager Settings 
> Power Manager Settings. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/f366312a-92cb-476c-bf14-ee4663806a13%40googlegroups.com.


Re: [qubes-users] Shutdown qubes on laptop lid closed

2020-05-28 Thread Mike Keehan




On 5/28/20 10:22 AM, Dave wrote:

Hey guys,

How can i change the lid close action in qubes, so the laptop shuts down 
when i close the lid ..?


Thanks in advance

Dave
Power Manager Settings

Power Manager Settings.

--
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/81f53d31-ab4a-1ae0-3f8d-b9dd31d5cc4c%40keehan.net.


[qubes-users] Shutdown qubes on laptop lid closed

2020-05-28 Thread Dave
Hey guys,

How can i change the lid close action in qubes, so the laptop shuts down 
when i close the lid ..?

Thanks in advance 

Dave

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/6632a06a-7d19-4f2c-965b-ea27440fc5e5%40googlegroups.com.


[qubes-users] Re: Qubes OS & 3mdeb minisummit 2020

2020-05-28 Thread Camille
edit: all the recordings will be available on 3mdeb youtube channel 
 :)

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/f0b4f80a-cc33-48d3-8688-c7bd06991948%40googlegroups.com.