nie wiem co zmieniałem, a dużo tego było

This commit is contained in:
2022-01-08 14:53:36 +01:00
parent 7f01e3c578
commit 8c1b3b2423
385 changed files with 24002 additions and 180 deletions

BIN
bin/chezmoi Executable file

Binary file not shown.

4
bin/czujnik.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
curl -s https://api.syngeos.pl/api/public/data/device/1554 |jq -r '.sensors |.[] | { (.name): ((.data[0].value|tostring) + .unit ) }' > /tmp/czujnik
curl -s https://api.syngeos.pl/api/public/data/device/1554 |jq -r '.sensors |.[] | { (.name): ((.data[0].threshold_level|tostring) ) }' > /tmp/czujnik-levels

BIN
bin/goreleaser Executable file

Binary file not shown.

15
bin/gsettings-import Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# usage: import-gsettings
config="${XDG_CONFIG_HOME:-$HOME/.config}/gtk-3.0/settings.ini"
if [ ! -f "$config" ]; then exit 1; fi
gnome_schema="org.gnome.desktop.interface"
gtk_theme="$(grep 'gtk-theme-name' "$config" | sed 's/.*\s*=\s*//')"
icon_theme="$(grep 'gtk-icon-theme-name' "$config" | sed 's/.*\s*=\s*//')"
cursor_theme="$(grep 'gtk-cursor-theme-name' "$config" | sed 's/.*\s*=\s*//')"
font_name="$(grep 'gtk-font-name' "$config" | sed 's/.*\s*=\s*//')"
gsettings set "$gnome_schema" gtk-theme "$gtk_theme"
gsettings set "$gnome_schema" icon-theme "$icon_theme"
gsettings set "$gnome_schema" cursor-theme "$cursor_theme"
gsettings set "$gnome_schema" font-name "$font_name"

3
bin/route_gong.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
sudo ip r a 10.0.10.0/23 via 192.168.88.244

7
bin/route_streamsage.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/sh
sudo ip r a 172.21.0.0/20 via 192.168.88.244
sudo ip r a 172.61.0.0/16 via 192.168.88.244
sudo ip r a 172.71.0.0/16 via 192.168.88.244
sudo ip r a 172.81.0.0/16 via 192.168.88.244
sudo ip r a 172.101.0.0/16 via 192.168.88.244

BIN
bin/vdot Executable file

Binary file not shown.

9
bin/wal Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pywal.__main__ import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())