Compare commits
4 Commits
a94ae1df3c
...
45362b9d05
| Author | SHA1 | Date | |
|---|---|---|---|
| 45362b9d05 | |||
| a88c12b85d | |||
| df671a927f | |||
| ffe9c7e236 |
10
README.md
10
README.md
@@ -10,7 +10,7 @@ Use ./stow.sh --unstow <folder_name> to remove configuration
|
||||
|
||||
## Quirks
|
||||
- Install based on Ubuntu Desktop
|
||||
- Font: [BlexMono Nerd Font](https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/IBMPlexMono.zip)
|
||||
- Font: [Iosevka Nerd Font](https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/Iosevka.tar.xz)
|
||||
- Keyboard Layout: EurKey (enable extended in gnome-tweaks)
|
||||
- Environment Vairables exported using systemd in [envvars.conf](files/environment/.config/environment.d/envvars.conf)
|
||||
- LibreWolf from flatpak needs devices=all to read yubikeys
|
||||
@@ -29,8 +29,8 @@ Use ./stow.sh --unstow <folder_name> to remove configuration
|
||||
- gamemode configuration:
|
||||
- renice=10
|
||||
- ssh-agent:
|
||||
- agent-location: `cd $HOME/.oh-my-zsh/ && git apply $HOME/.dots/ssh-agent-location.patch`
|
||||
- remove keys on lock: `ln -sSf $HOME/.dots/remove-ssh.service $HOME/.config/systemd/user/remove-ssh.service && systemctl --user start remove-ssh && systemctl --user enable remove-ssh`
|
||||
- agent-location: `cd $HOME/.oh-my-zsh/ && git apply $HOME/.dots/patches/ssh-agent-location.patch`
|
||||
- remove keys on lock: `ln -sSf $HOME/.dots/scripts/remove-ssh.service $HOME/.config/systemd/user/remove-ssh.service && systemctl --user start remove-ssh && systemctl --user enable remove-ssh`
|
||||
|
||||
## Software
|
||||
|
||||
@@ -42,7 +42,7 @@ sudo apt install \
|
||||
```
|
||||
|
||||
```
|
||||
git clone https://github.com/ohmyzsh/ohmyzsh/ $HOME/.oh-my-zsh && cd $HOME/.oh-my-zsh && git apply $HOME/.dots/prompt.patch
|
||||
git clone https://github.com/ohmyzsh/ohmyzsh/ $HOME/.oh-my-zsh && cd $HOME/.oh-my-zsh && git apply $HOME/.dots/patches/prompt.patch
|
||||
```
|
||||
|
||||
### Extended
|
||||
@@ -101,6 +101,8 @@ sudo snap install \
|
||||
- quick-settings-audio-panel
|
||||
- quicksettings-audio-devices-hider (hide unused devices)
|
||||
- gamemodeshellextensions@trsnaqe.com
|
||||
- status-area-horizontal-spacing@mathematical.coffee.gmail.com
|
||||
- blur-my-shell@aunetx (custom panel, slightly darker with custom pipeline)
|
||||
|
||||
### Pre-installed
|
||||
- disable desktop icons
|
||||
|
||||
@@ -2,15 +2,14 @@ theme = "everforest_light_modded"
|
||||
|
||||
[editor]
|
||||
line-number = "relative"
|
||||
cursorline = true
|
||||
cursor-shape.insert = "bar"
|
||||
insert-final-newline = false
|
||||
# rulers = [80, 100]
|
||||
true-color = true
|
||||
text-width = 100
|
||||
|
||||
[editor.whitespace.render]
|
||||
tab = "all"
|
||||
# space = "all"
|
||||
|
||||
[editor.indent-guides]
|
||||
render = true
|
||||
@@ -29,6 +28,9 @@ display-inlay-hints = true
|
||||
[keys.normal.g]
|
||||
"b" = ":sh git show %sh{git blame -L %{cursor_line},+1 %{buffer_name} | awk '{print $1}'}"
|
||||
|
||||
[keys.normal.space]
|
||||
"t" = ':lsp-workspace-command tinymist.pinMain "%sh{realpath %{buffer_name}}"'
|
||||
|
||||
[keys.normal.z]
|
||||
s = ":set soft-wrap.enable true"
|
||||
S = ":set soft-wrap.enable false"
|
||||
|
||||
@@ -8,9 +8,9 @@ clipboard_control write-clipboard write-primary no-append
|
||||
|
||||
include current-theme.conf
|
||||
|
||||
font_family BlexMono Nerd Font Mono Text
|
||||
italic_font BlexMono Nerd Font Mono
|
||||
bold_font BlexMono Nerd Font Mono
|
||||
font_family Iosevka Nerd Font
|
||||
# italic_font BlexMono Nerd Font Mono
|
||||
# bold_font BlexMono Nerd Font Mono
|
||||
|
||||
font_size 12
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ Description=Remove SSH keys on lock
|
||||
[Service]
|
||||
Type=simple
|
||||
Environment=SSH_AUTH_SOCK=/tmp/agent.sock
|
||||
ExecStart=%h/.dots/remove-ssh.bash
|
||||
ExecStart=%h/.dots/scripts/remove-ssh.bash
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
Reference in New Issue
Block a user