All Projects → ggeorgovassilis → Linuxscripts

ggeorgovassilis / Linuxscripts

Script collection for linux

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Linuxscripts

Roc Toolkit
Real-time audio streaming over the network.
Stars: ✭ 673 (+337.01%)
Mutual labels:  audio, networking
Cute headers
Collection of cross-platform one-file C/C++ libraries with no dependencies, primarily used for games
Stars: ✭ 3,274 (+2025.97%)
Mutual labels:  audio, networking
Cores
Various HDL (Verilog) IP Cores
Stars: ✭ 271 (+75.97%)
Mutual labels:  usb, audio
Rtp
A Go implementation of RTP
Stars: ✭ 120 (-22.08%)
Mutual labels:  audio, networking
Ecs
ECS for Unity with full game state automatic rollbacks
Stars: ✭ 151 (-1.95%)
Mutual labels:  networking
Rnnoise
Recurrent neural network for audio noise reduction
Stars: ✭ 2,266 (+1371.43%)
Mutual labels:  audio
Polybar Pulseaudio Control
A feature-full Polybar module to control PulseAudio
Stars: ✭ 148 (-3.9%)
Mutual labels:  audio
Usocket
Universal socket library for Common Lisp
Stars: ✭ 146 (-5.19%)
Mutual labels:  networking
Aeneas
aeneas is a Python/C library and a set of tools to automagically synchronize audio and text (aka forced alignment)
Stars: ✭ 1,942 (+1161.04%)
Mutual labels:  audio
Calaos base
Calaos server
Stars: ✭ 151 (-1.95%)
Mutual labels:  home-automation
Klaklasp
An extension for the Klak Wiring system to create audio reactive behaviors.
Stars: ✭ 150 (-2.6%)
Mutual labels:  audio
Smart Home
Phodal's Smart Home Setup Guide:HomeBridge + Home Assistant + Amazon Echo
Stars: ✭ 149 (-3.25%)
Mutual labels:  home-automation
Green Audio Player
Audio Player javascript library
Stars: ✭ 151 (-1.95%)
Mutual labels:  audio
Ffmpeg Video Player
An FFmpeg and SDL Tutorial.
Stars: ✭ 149 (-3.25%)
Mutual labels:  audio
Nwaves
.NET library for 1D signal processing focused specifically on audio processing
Stars: ✭ 151 (-1.95%)
Mutual labels:  audio
Ipgetter
Utility to fetch your external IP address
Stars: ✭ 148 (-3.9%)
Mutual labels:  networking
Swiftspeech
A speech recognition framework designed for SwiftUI.
Stars: ✭ 149 (-3.25%)
Mutual labels:  audio
Crossbar
Crossbar.io - WAMP application router
Stars: ✭ 1,957 (+1170.78%)
Mutual labels:  networking
Dtln
Tensorflow 2.x implementation of the DTLN real time speech denoising model. With TF-lite, ONNX and real-time audio processing support.
Stars: ✭ 147 (-4.55%)
Mutual labels:  audio
Karaoke
Karaoke built with Web Audio API
Stars: ✭ 149 (-3.25%)
Mutual labels:  audio

linuxscripts

Script collection for linux

powersave

Enables some powersaving on the Asus N56VB and Ubuntu 12.04. Should work on other computers and Linuxes as well. In order to enable power saving run the script with an argument of either light, on or extra like this:

powersave.sh light

The script contains self-explanatory functions grouped under a big CASE that enable various power saving features. Depending on your needs, you can re-arrange these functions to different cases. For example, I work mostly in a wireless setup, so I moved the "disable_ethernet" function to the "light" case. Also, when on the road, I don't do heavy processing, so I moved "make_cpus_sleep" to the "on" case - however my applications need a lot of CPU at work, so I'm not running the "make_cpus_sleep" function in the "light" setting.

brightness

Allows for finer brightness control for the Asus N56VB and Ubuntu 12.04. You probably need to adjust the "B" variable in the script.

brightness.sh down

usb-headset

Handles some automatic volume adjustment (like enabling the headset and muting other equipment). You probably will have to adjust the device names.

wifi-picker

Useful in a topology with a WLAN and multiple access points, will pick the AP with the strongest signal and connect. Must be run as root because iwlist won't return a list of SSIDs otherwise.

wifi-picker.sh <interface> <SSID>

e.g.

sudo wifi-picker.sh wlan0 home_wifi

Note: You might need to restart some applications or even services after running the script, e.g. Firefox won't be able to connect to Google or Facebook.

ip6-firewall

Example script that shows how to harden an ip6 enabled web server. Closes down everything other than port 22 (ssh), 80 (http), 6081 (varnish) and ICMP and redirects traffic from port 80 to 6081.

some extra keyboard mappings

Example script from here that adds some special characters for European languages to an US keyboard mapping.

control the tp-link hs100, hs110 and hs200 wlan smart plugs

See repository

tools for proxying a nordvpn socks5 proxy

Runs haproxy as a proxy to nordvpn. See repository

Snoop around the nordvpn-proxy directory for other tools.

checksum-directory

Compute the checksum of a directory and contents. Useful to make sure a location hasn't been corrupted. Must be invoked from directory to check.

cd /path/to/check
/path/to/script/compute-checksum.sh

A

compute-checksum.sh

## qrcodes
Script that converts a file to a series of QR codes and assembles QR codes back together into file. Doesn't work very well on big files :-(

Convert "file" into a series of QR codes stored in the current directory as PNG images:

```sh
make-qr.sh sourcefile

Convert QR codes back into file. Takes all PNG files named part.somenumber.png in the current directory:

restore-qr.sh outputfile

reset-pci_device

Reset a PCI device (like in my case, the Atheros wifi module) when the driver isn't responding and reloads the driver

reset-pci-device.sh
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].