Commit b04676d 1 parent 078ca6e commit b04676d Copy full SHA for b04676d
File tree 4 files changed +107
-10
lines changed
4 files changed +107
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Qtile
2
2
3
- ![ Qtile] ( ../../.screenshots/qtile.png )
4
3
5
- *** Language***
6
- - [ 🇪🇸 Español] ( ./README.es.md )
7
- - 🇺🇸 English
4
+ ![ Qtile] ( http://www.qtile.org/static/img/screenshots/default.png )
8
5
9
6
## Installation (Arch based)
10
7
11
- Install Qtile and dependencies:
12
-
13
- ```
14
- sudo pacman -S qtile pacman-contrib
8
+ - Install Qtile and dependencies:
9
+ - [ iwd ] ( https://wiki.archlinux.org/title/Iwd )
10
+ ``` sh
11
+ sudo pacman -S qtile pacman-contrib iwd
15
12
yay -S nerd-fonts-ubuntu-mono
16
13
pip install psutil
17
14
```
15
+ - Program launcher (like dmenu or rofi):
16
+ ``` sh
17
+ sudo pacman -S rofi
18
+ ```
19
+ - Wallpaper
20
+ ``` sh
21
+ sudo pacman -S feh
22
+ ```
23
+ - Brightness
24
+ ``` sh
25
+ sudo pacman -S brightnessctl redshift
26
+ ```
27
+ - Screen
28
+ ``` sh
29
+ sudo pacman -S xorg-xrandr
30
+ ```
18
31
19
32
Clone this repository and copy my configs:
20
33
Original file line number Diff line number Diff line change
1
+ * .temp
Original file line number Diff line number Diff line change 1
- # dotfiles
2
- dotfiles
1
+ # Dotfiles & Configs
2
+
3
+ ## Table of Contents
4
+ - [ Software] ( #software )
5
+
6
+
7
+ ## Tiling Manager
8
+ - [ Qtile] ( .config/qtile/README.md )
9
+
10
+ ## Software
11
+ ### Basic utilities
12
+ ``` sh
13
+ # build essentials
14
+ sudo pacman -S git vim make automake cmake
15
+
16
+ # package manager
17
+ sudo pacman -S yay snapd npm stack
18
+ sudo systemctl enable snapd
19
+ sudo systemctl start snapd
20
+ ```
21
+
22
+ ### Laptop utilities (Optional)
23
+ ``` sh
24
+ # Optimize Linux Laptop Battery Life
25
+ sudo pacman -S tlp
26
+ sudo systemctl enable tlp
27
+ sudo systemctl start tlp
28
+ ```
29
+
30
+ ### Fonts, theming and GTK
31
+
32
+ ``` sh
33
+ sudo pacman -S ttf-dejavu ttf-liberation noto-fonts
34
+ ```
35
+ ### Apps
36
+ - [ Slack] ( https://snapcraft.io/slack )
37
+
38
+ ``` sh
39
+ sudo pacman -S alacritty ruby go
40
+ ```
41
+ - [ Spacemacs] ( docs/spacemacs.md )
42
+ - Python
43
+ ``` sh
44
+ # pip
45
+ sudo pacman -S python-pip pyenv
46
+ # pipx
47
+ pip install pipx
48
+ # pipx packages
49
+ pipx install poetry pre-commit
50
+ ```
51
+ - Latex
52
+ ``` sh
53
+ sudo pacman -S texlive-core texlive-bin texlive-bibtexextra \
54
+ texlive-fontsextra texlive-formatsextra texlive-langextra \
55
+ texlive-latexextra texlive-pictures texlab
56
+ ```
57
+ - Virtualization
58
+ ``` sh
59
+ # docker
60
+ sudo pacman -S docker docker-compose
61
+ # docker linter
62
+ yay -S hadolint
63
+ # kubernetes
64
+ sudo pacman -S helm kubectl
65
+ ```
Original file line number Diff line number Diff line change
1
+ # Spacemacs
2
+
3
+ ![ spacemacs] ( https://www.spacemacs.org/img/logo.svg )
4
+ ## Emacs
5
+ ``` sh
6
+ sudo pacman -S emacs
7
+ ```
8
+ ## [ Spacemacs] ( https://www.spacemacs.org/ )
9
+
10
+ ``` sh
11
+ git clone https://github.com/syl20bnr/spacemacs ~ /.emacs.d
12
+ ```
13
+
14
+ ## Layers
15
+ - [ Markdown] ( https://develop.spacemacs.org/layers/+lang/markdown/README.html )
16
+ - [ Yaml] ( https://develop.spacemacs.org/layers/+lang/yaml/README.html )
17
+ - [ Json] ( https://develop.spacemacs.org/layers/+lang/json/README.html )
18
+ - [ Python] ( https://develop.spacemacs.org/layers/+lang/python/README.html )
19
+ - [ Docker] ( https://develop.spacemacs.org/layers/+tools/docker/README.html )
20
+ - [ Sql] ( https://develop.spacemacs.org/layers/+lang/sql/README.html )
You can’t perform that action at this time.
0 commit comments