From eee93fbf32a295c79327b59580ffae70606b79cd Mon Sep 17 00:00:00 2001 From: "Eshan Roy (Eshanized)" Date: Thu, 7 Mar 2024 11:30:18 +0530 Subject: [PATCH] @eshanized: push via push.sh!!! --- etc/X11/xorg.conf.d/30-touchpad.conf | 6 ++++++ etc/X11/xorg.conf.d/99-killX.conf | 9 +++++++++ etc/modprobe.d/disable-evbug.conf | 2 ++ etc/modprobe.d/nobeep.conf | 1 + etc/modprobe.d/snd_pcsp.conf | 2 ++ etc/pacman.d/gnupg/gpg.conf | 16 ++++++++++++++++ push.sh | 28 ++++++++++++++++++++++++++++ 7 files changed, 64 insertions(+) create mode 100644 etc/X11/xorg.conf.d/30-touchpad.conf create mode 100644 etc/X11/xorg.conf.d/99-killX.conf create mode 100644 etc/modprobe.d/disable-evbug.conf create mode 100644 etc/modprobe.d/nobeep.conf create mode 100644 etc/modprobe.d/snd_pcsp.conf create mode 100644 etc/pacman.d/gnupg/gpg.conf create mode 100755 push.sh diff --git a/etc/X11/xorg.conf.d/30-touchpad.conf b/etc/X11/xorg.conf.d/30-touchpad.conf new file mode 100644 index 0000000..8d20a2e --- /dev/null +++ b/etc/X11/xorg.conf.d/30-touchpad.conf @@ -0,0 +1,6 @@ +Section "InputClass" + Identifier "touchpad" + Driver "libinput" + MatchIsTouchpad "on" + Option "Tapping" "on" +EndSection \ No newline at end of file diff --git a/etc/X11/xorg.conf.d/99-killX.conf b/etc/X11/xorg.conf.d/99-killX.conf new file mode 100644 index 0000000..900feeb --- /dev/null +++ b/etc/X11/xorg.conf.d/99-killX.conf @@ -0,0 +1,9 @@ +Section "ServerFlags" + Option "DontZap" "false" +EndSection + +Section "InputClass" + Identifier "Keyboard Defaults" + MatchIsKeyboard "yes" + Option "XkbOptions" "terminate:ctrl_alt_bksp" +EndSection diff --git a/etc/modprobe.d/disable-evbug.conf b/etc/modprobe.d/disable-evbug.conf new file mode 100644 index 0000000..031e95e --- /dev/null +++ b/etc/modprobe.d/disable-evbug.conf @@ -0,0 +1,2 @@ +#disable messy debug messages +blacklist evbug diff --git a/etc/modprobe.d/nobeep.conf b/etc/modprobe.d/nobeep.conf new file mode 100644 index 0000000..b46792e --- /dev/null +++ b/etc/modprobe.d/nobeep.conf @@ -0,0 +1 @@ +blacklist pcspkr diff --git a/etc/modprobe.d/snd_pcsp.conf b/etc/modprobe.d/snd_pcsp.conf new file mode 100644 index 0000000..121799e --- /dev/null +++ b/etc/modprobe.d/snd_pcsp.conf @@ -0,0 +1,2 @@ +#Fix sound problems +blacklist snd_pcsp diff --git a/etc/pacman.d/gnupg/gpg.conf b/etc/pacman.d/gnupg/gpg.conf new file mode 100644 index 0000000..c68ad2d --- /dev/null +++ b/etc/pacman.d/gnupg/gpg.conf @@ -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 diff --git a/push.sh b/push.sh new file mode 100755 index 0000000..a63817c --- /dev/null +++ b/push.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +# A simple script to maintain github repository + +# Author : Eshan Roy +# 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" \ No newline at end of file