-
Regenerate initramfs kernel
sudo update-initramfs -u -k all
-
Users & Groups
- Add user to group
sudo usermod -a -G cdrom userName
sudo usermod -aG vboxsf $USER
- Add user to group
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/python3 | |
import json | |
import requests | |
import os | |
## Interrupt PC sleep/suspend mode if jellyfin has active viewers | |
## simple check of jellyfin activity log | |
## create a systemd/cron timer once an hour to run this script | |
## if running it will simulate a mouse movement, which will keep the system from entering suspend/sleep mode for another hour | |
## See this thread for background info |
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
import QtQuick 2.9 | |
import QtQuick.Controls 2.5 | |
import org.kde.plasma.core 2.1 | |
import QtWebEngine 1.9 | |
// g-mail suite workspace app using qt webview | |
// load each app in a seperate webview for fast switching views | |
// TO-DO | |
// shortcut keys to switch views |
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
import QtQuick 2.9 | |
import org.kde.plasma.core 2.1 | |
Rectangle { | |
id:scoresMain | |
width:420 | |
height:185 | |
color:"black" | |
// docs https://gist.github.com/akeaswaran/b48b02f1c94f873c6655e7129910fc3b | |
//property var url1:"https://site.api.espn.com/apis/site/v2/sports/baseball/mlb/teams/18" |