nie wiem co zmieniałem, a dużo tego było
This commit is contained in:
BIN
bin/chezmoi
Executable file
BIN
bin/chezmoi
Executable file
Binary file not shown.
4
bin/czujnik.sh
Executable file
4
bin/czujnik.sh
Executable 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
BIN
bin/goreleaser
Executable file
Binary file not shown.
15
bin/gsettings-import
Executable file
15
bin/gsettings-import
Executable 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
3
bin/route_gong.sh
Executable 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
7
bin/route_streamsage.sh
Normal 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
|
Reference in New Issue
Block a user