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
{ | |
"name": "netbird-dashboard", | |
"version": "2.0.0", | |
"lockfileVersion": 3, | |
"requires": true, | |
"packages": { | |
"": { | |
"name": "netbird-dashboard", | |
"version": "2.0.0", | |
"dependencies": { |
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
2024-05-01 08:32:23 License exception: Could not create a trial license by connecting to https://mmonit.com/ -- SSL connect error [88.99.240.67] error:0A000086:SSL routines::certificate verify failed | |
# If you cannot connect to https://mmonit.com/ from this machine, use this | |
command to obtain a trial license from a machine connected to the internet: | |
curl -X POST https://mmonit.com/api/services/license/trial -o license.xml | |
Copy license.xml to mmonit's conf/ directory on this machine and start mmonit | |
Note: This url is throttled and will fail with (429) if more requests |
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 bash | |
# Monitor D-Bus for XDG Portals screencasting events | |
# Requires: busctl and jq | |
echo_debug() { | |
if [[ -z "$DEBUG" ]] | |
then | |
return 0 | |
fi |
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
# https://wiki.hyprland.org/Configuring/Binds/ | |
$mod = SUPER | |
# hyprland binds | |
bind = $mod SHIFT, C, exec, $bin_dir/kill-active.sh | |
bind = $mod SHIFT, K, exec, hyprctl kill | |
bind = $mod SHIFT, Q, exec, $bin_dir/leave.sh | |
bind = $mod SHIFT, R, exec, $bin_dir/reload-config.sh | |
bind = $mod ALT, R, forcerendererreload, |
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
Feb 10 16:07:48 ge2 hyprland[2382428]: Welcome to Hyprland! | |
Feb 10 16:07:48 ge2 hyprland[2382428]: [LOG] Instance Signature: 84ab8d11e8951a6551d1e1bf87796a8589da6d47_1707577668 | |
Feb 10 16:07:48 ge2 hyprland[2382428]: [LOG] Hyprland PID: 2382428 | |
Feb 10 16:07:48 ge2 hyprland[2382428]: [LOG] ===== SYSTEM INFO: ===== | |
Feb 10 16:07:48 ge2 hyprland[2382428]: [LOG] System name: Linux | |
Feb 10 16:07:48 ge2 hyprland[2382428]: [LOG] Node name: ge2 | |
Feb 10 16:07:48 ge2 hyprland[2382428]: [LOG] Release: 6.7.4 | |
Feb 10 16:07:48 ge2 hyprland[2382428]: [LOG] Version: #1-NixOS SMP PREEMPT_DYNAMIC Mon Feb 5 20:17:12 UTC 2024 | |
Feb 10 16:07:48 ge2 hyprland[2382428]: [LOG] GPU information: | |
Feb 10 16:07:48 ge2 hyprland[2382428]: 00:02.0 VGA compatible controller [0300]: Intel Corporation Raptor Lake-P [Iris Xe Graphics] [8086:a7a0] (rev 04) (prog-if 00 [VGA controller]) |
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
diff --git a/homeassistant_cli/plugins/raw.py b/homeassistant_cli/plugins/raw.py | |
index 46c544e..62e6a1a 100644 | |
--- a/homeassistant_cli/plugins/raw.py | |
+++ b/homeassistant_cli/plugins/raw.py | |
@@ -61,7 +61,9 @@ def get(ctx: Configuration, method): | |
def post(ctx: Configuration, method, json): | |
"""Do a POST request against api/<method>.""" | |
if json: | |
- data = json_.loads(json) | |
+ data = json_.loads( |
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
# Generic PulseAudio wrapper commands | |
if (( ! $+commands[pactl] )) | |
then | |
return | |
fi | |
pulseaudio::list() { | |
local invert | |
local friendly_name | |
local monitor |
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 bash | |
usage() { | |
echo "Usage: $(basename "$0") [-d DEFAULT_BORDER_PX] [-m MAXIMIZED_BORDER_PX]" | |
} | |
get_waybar_height() { | |
# Waybar's config is JSONC, ie it contains comments. We need to strip | |
# these for jq. | |
grep -v '//' ~/.config/waybar/config | jq -er '.height' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
wifi-scan() { | |
setopt localoptions pipefail errreturn | |
local device="$(wifnames | tail -1)" | |
local raw | |
zparseopts -D -K -E \ | |
r=raw -raw=raw | |
if [[ -z "$device" ]] |
NewerOlder