@eshanized: push via push.sh!!!

This commit is contained in:
2024-03-07 11:30:18 +05:30
parent e4d6a7ce60
commit eee93fbf32
7 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
EndSection

View File

@@ -0,0 +1,9 @@
Section "ServerFlags"
Option "DontZap" "false"
EndSection
Section "InputClass"
Identifier "Keyboard Defaults"
MatchIsKeyboard "yes"
Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

View File

@@ -0,0 +1,2 @@
#disable messy debug messages
blacklist evbug

View File

@@ -0,0 +1 @@
blacklist pcspkr

View File

@@ -0,0 +1,2 @@
#Fix sound problems
blacklist snd_pcsp

View File

@@ -0,0 +1,16 @@
no-greeting
no-permission-warning
lock-never
keyserver-options timeout=10
keyserver-options import-clean
keyserver-options no-self-sigs-only
#keyserver hkp://keys.openpgp.org
#keyserver hkp://keys.openpgp.org:80
#keyserver hkps://keys.openpgp.org
#keyserver hkps://keys.openpgp.org:443
keyserver hkps://keyserver.ubuntu.com:443
#keyserver hkp://keyserver.ubuntu.com:80
#keyserver hkp://pool.sks-keyservers.net:80
#keyserver hkps://hkps.pool.sks-keyservers.net:443
#keyserver hkp://ipv4.pool.sks-keyservers.net:11371

28
push.sh Executable file
View File

@@ -0,0 +1,28 @@
#!/bin/bash
# A simple script to maintain github repository
# Author : Eshan Roy <eshan@snigdhaos.org>
# Author URL : https://eshanized.github.io/
# REPOSITORY Config
REPO=snigdhaos-system-config
# HOST Config
HOST=https://github.com
# DESTINATION Config
ORG=Snigdha-OS
# SETUP REPO URL
REPO_URL="${HOST}/${ORG}/${REPO}.git"
BRANCH="master" #or "main"
# Commit Message:
MESSAGE="@eshanized: push via push.sh!!!"
# Git Action
git add .
git commit -m "$MESSAGE"
git push origin "$BRANCH"