-
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager brew install virt-viewer
-
Once that's installed should be able make a call
remote-viewer
with a pve-spice.vv file downloaded from proxmox web interface
Discover gists
This file contains 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
#!/usr/bin/env perl -T | |
use strict; | |
use warnings; | |
use Getopt::Std; | |
my $VERSION = "0.0.5"; | |
$Getopt::Std::STANDARD_HELP_VERSION = 1; | |
#=============================================================================== |
This file contains 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
#tabbrowser-tabbox { | |
padding-right: var(--space-small); | |
padding-bottom: var(--space-small); | |
outline: none !important; | |
box-shadow: none !important; | |
background-color: var(--toolbar-bgcolor); | |
} | |
#tabbrowser-tabpanels { | |
border-radius: var(--border-radius-medium); |
This file contains 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
# -*- coding: utf-8 -*- | |
# Make by x:@BoxMrChen and windsurf ai | |
import asyncio | |
import base64 | |
import json | |
import io | |
import os | |
import sys | |
import pyaudio |
This file contains 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
function Add-Copy { | |
param ( | |
[Parameter( | |
Mandatory = $true, | |
Position = 0, | |
HelpMessage = "The path of the file to clone." | |
)] | |
[ValidateNotNullOrWhiteSpace()] | |
[string]$OriginalFilePath, |
This file contains 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
import asyncio | |
from enum import Enum | |
HOST = "127.0.0.1" | |
PORT = 62775 | |
class Commands(Enum): | |
UPDATE = 0 | |
LOGOUT = 1 |
This file contains 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
#!/bin/sh | |
# Usage: | |
# Put this somewhere in your path, make executable and bind a key to... | |
# rofi -show scratch -modes "scratch:hyprscratch.sh" | |
# Requires ripgrep | |
hc=hyprctl | |
if [ "$1" = "" ]; then |
dbus-run-session -- gnome-shell --nested --wayland
busctl --user call \ org.gnome.Shell \ /org/gnome/Shell \ org.gnome.Shell.Extensions ReloadExtension \ s "$name"
NewerOlder