Changed color schemes
This commit is contained in:
parent
6a5dc7f704
commit
4ca42a3003
3
info.txt
3
info.txt
@ -9,6 +9,9 @@ sudo usermod -aG libvirt raabe
|
|||||||
Packages:
|
Packages:
|
||||||
exa neomutt htop picom xfce-power-manager nitrogen dunst pywal mpv ranger ueberzug
|
exa neomutt htop picom xfce-power-manager nitrogen dunst pywal mpv ranger ueberzug
|
||||||
bat grivbox-material-theme-git gruvbox-icon-theme
|
bat grivbox-material-theme-git gruvbox-icon-theme
|
||||||
|
yaru-gtk-theme
|
||||||
|
remmina freerdp
|
||||||
|
|
||||||
|
|
||||||
Disable Suspend
|
Disable Suspend
|
||||||
https://wiki.archlinux.org/title/Power_management#Disabling_suspend
|
https://wiki.archlinux.org/title/Power_management#Disabling_suspend
|
||||||
|
0
install.sh
Normal file
0
install.sh
Normal file
@ -29,3 +29,4 @@ set mime_forward_rest=yes
|
|||||||
|
|
||||||
#SIDEBAR
|
#SIDEBAR
|
||||||
set sidebar_visible
|
set sidebar_visible
|
||||||
|
|
||||||
|
Binary file not shown.
@ -182,20 +182,47 @@ screens = [
|
|||||||
top=bar.Bar(
|
top=bar.Bar(
|
||||||
[
|
[
|
||||||
widget.GroupBox(
|
widget.GroupBox(
|
||||||
highlight_method='block',
|
highlight_method='line',
|
||||||
|
highlight=ColorC,
|
||||||
|
block_border=ColorC,
|
||||||
|
highlight_color=[ColorC,ColorE],
|
||||||
block_highlight_text_color='ffffff',
|
block_highlight_text_color='ffffff',
|
||||||
foreground='ffffff',
|
foreground='ffffff',
|
||||||
fontsize=14,
|
fontsize=14,
|
||||||
active=ColorC
|
active=ColorC
|
||||||
),
|
),
|
||||||
|
widget.TextBox(
|
||||||
|
text='',
|
||||||
|
fontsize=14
|
||||||
|
),
|
||||||
widget.WindowName(
|
widget.WindowName(
|
||||||
fontsize=14
|
fontsize=14
|
||||||
),
|
),
|
||||||
widget.Systray(),
|
widget.Systray(),
|
||||||
|
widget.TextBox(
|
||||||
|
text=' ',
|
||||||
|
desc='Start Win10 and RDP',
|
||||||
|
mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e vm')},
|
||||||
|
fontsize=14
|
||||||
|
),
|
||||||
|
widget.TextBox(
|
||||||
|
text=' ',
|
||||||
|
desc='Destroy Win10',
|
||||||
|
mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e vmstop')},
|
||||||
|
fontsize=14
|
||||||
|
),
|
||||||
|
widget.TextBox(
|
||||||
|
text='',
|
||||||
|
fontsize=14
|
||||||
|
),
|
||||||
widget.Volume(
|
widget.Volume(
|
||||||
fmt='Vol: {}',
|
fmt='Vol: {}',
|
||||||
fontsize=14
|
fontsize=14
|
||||||
),
|
),
|
||||||
|
widget.TextBox(
|
||||||
|
text='',
|
||||||
|
fontsize=14
|
||||||
|
),
|
||||||
widget.CheckUpdates(
|
widget.CheckUpdates(
|
||||||
fontsize=14,
|
fontsize=14,
|
||||||
distro="Arch",
|
distro="Arch",
|
||||||
@ -203,11 +230,20 @@ screens = [
|
|||||||
update_interval=600,
|
update_interval=600,
|
||||||
mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e yay')}
|
mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e yay')}
|
||||||
),
|
),
|
||||||
|
widget.TextBox(
|
||||||
|
text='',
|
||||||
|
fontsize=14
|
||||||
|
),
|
||||||
widget.Clock(
|
widget.Clock(
|
||||||
format="%Y-%m-%d %a %I:%M %p",
|
format="%Y-%m-%d %a %I:%M %p",
|
||||||
fontsize=14
|
fontsize=14
|
||||||
),
|
),
|
||||||
|
widget.TextBox(
|
||||||
|
text='',
|
||||||
|
fontsize=14
|
||||||
|
),
|
||||||
widget.QuickExit(
|
widget.QuickExit(
|
||||||
|
default_text=' ',
|
||||||
countdown_start=3,
|
countdown_start=3,
|
||||||
fontsize=14
|
fontsize=14
|
||||||
),
|
),
|
||||||
@ -261,7 +297,7 @@ wl_input_rules = None
|
|||||||
#
|
#
|
||||||
# We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in
|
# We choose LG3D to maximize irony: it is a 3D non-reparenting WM written in
|
||||||
# java that happens to be on java's whitelist.
|
# java that happens to be on java's whitelist.
|
||||||
wmname = "LG3D"
|
wmname = "QTILE"
|
||||||
|
|
||||||
# HOOK startup
|
# HOOK startup
|
||||||
@hook.subscribe.startup_once
|
@hook.subscribe.startup_once
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
virsh --connect qemu:///system start RDPWindows
|
virsh --connect qemu:///system start RDPWindows
|
||||||
virt-viewer --connect qemu:///system RDPWindows &
|
echo "Waiting 30 sec for Windows 10 startup..."
|
||||||
|
sleep 30
|
||||||
|
echo "Starting xfreerdp now..."
|
||||||
|
xfreerdp /v:Windows10 /size:100% /d: /p:sancho /dynamic-resolution &
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user