mirror of
https://github.com/Snigdha-OS/snigdhaos-system-config.git
synced 2025-09-20 19:44:58 +02:00
@eshanized: push via push.sh!!!
This commit is contained in:
6
etc/X11/xorg.conf.d/30-touchpad.conf
Normal file
6
etc/X11/xorg.conf.d/30-touchpad.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
Section "InputClass"
|
||||
Identifier "touchpad"
|
||||
Driver "libinput"
|
||||
MatchIsTouchpad "on"
|
||||
Option "Tapping" "on"
|
||||
EndSection
|
9
etc/X11/xorg.conf.d/99-killX.conf
Normal file
9
etc/X11/xorg.conf.d/99-killX.conf
Normal 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
|
2
etc/modprobe.d/disable-evbug.conf
Normal file
2
etc/modprobe.d/disable-evbug.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
#disable messy debug messages
|
||||
blacklist evbug
|
1
etc/modprobe.d/nobeep.conf
Normal file
1
etc/modprobe.d/nobeep.conf
Normal file
@@ -0,0 +1 @@
|
||||
blacklist pcspkr
|
2
etc/modprobe.d/snd_pcsp.conf
Normal file
2
etc/modprobe.d/snd_pcsp.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
#Fix sound problems
|
||||
blacklist snd_pcsp
|
16
etc/pacman.d/gnupg/gpg.conf
Normal file
16
etc/pacman.d/gnupg/gpg.conf
Normal 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
28
push.sh
Executable 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"
|
Reference in New Issue
Block a user