Skip to content

Instantly share code, notes, and snippets.

@AzmainBiswas
AzmainBiswas / 20-amdgpu.conf
Last active September 8, 2025 14:59
fix screen tearing in x11
Section "Device"
Identifier "AMD Graphics"
Driver "amdgpu"
Option "TearFree" "true"
EndSection
@AzmainBiswas
AzmainBiswas / 30-touchpad.conf
Last active April 2, 2025 17:17
For enable tap to touch and natural scrolling in X11.
Section "InputClass"
Identifier "touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "NaturalScrolling" "true"
Option "DisableWhileTyping" "true"
EndSection
@AzmainBiswas
AzmainBiswas / my-oh-my-posh-gruvboc.omp.json
Created July 8, 2023 05:09
This is Gruvbox theme form oh-my-posh website with little bit tweak in python module and lua module
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"background": "#3A3A3A",
"foreground": "#ffffff",
"style": "powerline",
@AzmainBiswas
AzmainBiswas / Microsoft.PowerShell_profile.ps1
Last active February 23, 2024 05:00
my PowerShell profile
# need to install fd lsd fzf mpc-hc and mpd
# first install PSReadline
if ($host.Name -eq 'ConsoleHost')
{
Import-Module PSReadLine
}
# oh my posh
oh-my-posh init pwsh --config 'D:\git-ripo\windows-stuf\my-oh-my-posh.omp.json' | Invoke-Expression
@AzmainBiswas
AzmainBiswas / SumatraPDF-settings.txt
Last active July 9, 2023 16:13
A little configuration of SumatraPDF
# For documentation, see https://www.sumatrapdfreader.org/settings/settings3-4-6.html
# With Gruvbox color. Because Gruvbox is best.
FixedPageUI [
TextColor = #ebdbb2
BackgroundColor = #1d2021
SelectionColor = #fabd2f
WindowMargin = 0 0 0 0
PageSpacing = 4 4
HideScrollbars = false
]