diff --git a/qtile/__pycache__/config.cpython-310.pyc b/qtile/__pycache__/config.cpython-310.pyc index 0feb2c3..5e896df 100644 Binary files a/qtile/__pycache__/config.cpython-310.pyc and b/qtile/__pycache__/config.cpython-310.pyc differ diff --git a/qtile/config.py b/qtile/config.py index e070ebf..d48cbc4 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -181,35 +181,40 @@ screens = [ Screen( top=bar.Bar( [ - # widget.CurrentLayout(), - widget.GroupBox(), - widget.Prompt(), - widget.WindowName(), - widget.Chord( - chords_colors={ - "launch": ("#ff0000", "#ffffff"), - }, - name_transform=lambda name: name.upper(), + widget.GroupBox( + highlight_method='block', + block_highlight_text_color='ffffff', + foreground='ffffff', + fontsize=14, + active=ColorC + ), + widget.WindowName( + fontsize=14 ), - # widget.TextBox("default config", name="default"), - # widget.TextBox("Press <M-r> to spawn", foreground="#d75f5f"), - # NB Systray is incompatible with Wayland, consider using StatusNotifier instead - # widget.StatusNotifier(), widget.Systray(), - widget.Volume(fmt='Vol: {}'), - # widget.Clipboard(), + widget.Volume( + fmt='Vol: {}', + fontsize=14 + ), widget.CheckUpdates( + fontsize=14, distro="Arch", no_update_string="No updates", update_interval=600, mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e yay')} ), - widget.Clock(format="%Y-%m-%d %a %I:%M %p"), - widget.QuickExit(countdown_start=3), + widget.Clock( + format="%Y-%m-%d %a %I:%M %p", + fontsize=14 + ), + widget.QuickExit( + countdown_start=3, + fontsize=14 + ), ], 24, opacity=0.7, - border_width=[2, 0, 2, 0], # Draw top and bottom borders + border_width=[3, 0, 3, 0], # Draw top and bottom borders ), ), ] diff --git a/scripts/growthrate.sh b/scripts/growthrate.sh deleted file mode 100755 index 6d68184..0000000 --- a/scripts/growthrate.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -read -p 'Start Value: ' startval -read -p 'End Value: ' endval -let growthrate=(($endval-$startval)/$startval) -echo $growthrate - diff --git a/scripts/launchVM.sh b/scripts/launchVM.sh new file mode 100755 index 0000000..d4367eb --- /dev/null +++ b/scripts/launchVM.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +virsh --connect qemu:///system start RDPWindows +virt-viewer --connect qemu:///system RDPWindows & +