Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bpingris/dotfiles
https://github.com/bpingris/dotfiles
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bpingris/dotfiles
- Owner: bpingris
- Created: 2018-08-18T10:05:24.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-22T21:09:23.000Z (4 months ago)
- Last Synced: 2024-08-02T13:34:23.249Z (3 months ago)
- Language: Lua
- Size: 26.1 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dotfiles Benoît Pingris
This repository contains useful informations about my setup.
- fish (with fisher)
- neovim 0.5
- bspwm![](https://raw.githubusercontent.com/bpingris/dotfiles/master/images/desktop_example.png)
#### Disable power button
Edit the `/etc/systemd/logind.conf`, uncomment the `HandlePowerKey` and set it to "ignore"
#### Enable the touchpad click
Do not use the `xinput` commands, wont work on every machine as devices' ID won't be the same.
But, do the following:
- create a new file `/etc/X11/xorg.conf.d/90-touchpad.conf`
- add the following:
```
Section "InputClass"
Identifier "touchpad"
MatchIsTouchpad "on"
Driver "libinput"
Option "Tapping" "on"
Option "TappingButtonMap" "lrm"
EndSection
```