Follow this guide
This is an attempt to 'restore' some of the aspects of the older dark blue theme for Kagi. It's highly opinionated so may not fit your needs.
Here's a list of what I want to add/have added:
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules] | |
"{723B2CF9-6C17-40CF-AD64-382DAF2BC7BD}"="v2.32|Action=Allow|Active=TRUE|Dir=Out|App=%ProgramFiles%\\NVIDIA Corporation\\NVIDIA Broadcast\\NVIDIA Broadcast UI.exe|Name=Allow NVidia Broadcast Updates|" |
#!/bin/bash | |
# Configurable working directory | |
WORKING_DIR="/torrent/utils/message-telegram" | |
# Change to the working directory | |
cd "$WORKING_DIR" || { echo "Failed to change to working directory: $WORKING_DIR"; exit 1; } | |
# Function to send telegram message with error handling | |
send_telegram_message() { |
Follow this guide
This is an attempt to 'restore' some of the aspects of the older dark blue theme for Kagi. It's highly opinionated so may not fit your needs.
Here's a list of what I want to add/have added:
Add-Type -AssemblyName PresentationFramework | |
Function Get-Folder($initialDirectory="C:\") | |
{ | |
[System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms")|Out-Null | |
$foldername = New-Object System.Windows.Forms.FolderBrowserDialog | |
$foldername.Description = "Select a folder" | |
$foldername.rootfolder = "MyComputer" | |
$foldername.SelectedPath = $initialDirectory |