This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yay -S gdb ninja gcc cmake meson libxcb xcb-proto xcb-util xcb-util-keysyms libxfixes libx11 libxcomposite xorg-xinput libxrender pixman wayland-protocols cairo pango seatd libxkbcommon xcb-util-wm xorg-xwayland libinput libliftoff libdisplay-info cpio tomlplusplus hyprlang hyprcursor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class TrafficRow: | |
| def __init__(self, title, percentage, light): | |
| self.title = title | |
| self.percentage = percentage | |
| if light not in ["green", "red", "amber"]: | |
| raise ValueError("Invalid light value") | |
| self.light = light | |
| rows = [TrafficRow("Avxckljvxzclv", 50, "green"), TrafficRow("Bxzcvzxcv", 25, "red"), TrafficRow("dsfsd", 25, "amber")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $mytemp = [environment]::getfolderpath("mydocuments") | |
| (new-object System.Net.WebClient).DownloadFile('https://i.imgur.com/ea9PB3H.png',"$mytemp\b.png"); | |
| Add-Type @" | |
| using System; | |
| using System.Runtime.InteropServices; | |
| using Microsoft.Win32; | |
| namespace Wallpaper | |
| { | |
| public enum Style : int | |
| { |