Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stlaz/dotfiles
Personal dotfiles for i3, Code and more
https://github.com/stlaz/dotfiles
Last synced: about 1 month ago
JSON representation
Personal dotfiles for i3, Code and more
- Host: GitHub
- URL: https://github.com/stlaz/dotfiles
- Owner: stlaz
- Created: 2019-03-04T16:35:21.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-02T09:21:09.000Z (3 months ago)
- Last Synced: 2024-10-14T12:11:16.905Z (3 months ago)
- Language: Lua
- Size: 974 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Using this repo
Install chezmoi. Then
```
chezmoi init --ssh stlaz/dotfiles
chezmoi diff # to check changes to your configs
chezmoi apply -v # to apply the changes from above
chezmoi merge # in case you want to alter some of the changes
```More on chezmoi usage at https://www.chezmoi.io
## Installing system-managed zsh plugins to oh-my-zsh
oh-my-zsh:
```
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
ln -s /usr/share/zsh/plugins/zsh-autosuggestions ~/.oh-my-zsh/plugins
ln -s /usr/share/zsh/plugins/zsh-syntax-highlighting ~/.oh-my-zsh/plugins
```## Turn off pc beeping
```
# echo "blacklist pcspkr" > /etc/modprobe.d/nobeep.conf
```## Make it possible to launch terminal apps from the "Launch with ..." menus
This is a hack around GNOME, which tries to look up known terminals when
launching a terminal application.```
ln -s /usr/bin/alacritty /usr/bin/xterm
```## Sharing screen in Wayland (Arch)
Install the `xdg-desktop-portal` and `xdg-desktop-portal-impl` packages. Choose
the desktop portal implementation matching your window manager.Install `slurp` to be able to pick window/screen to share.
## Mirroring a screen for presentations
```
# check available outputs
swaymsg -t get_outputs
# mirror an output to the current screen, start in full screen
wl-mirror -F -s c
```## Unlock gnome-keyring after login
User password must match the gnome-keyring password. After that, follow
https://wiki.archlinux.org/title/GNOME/Keyring#PAM_step.`seahorse` is useful to access the gnome-keyring contents.