updates to arch]

This commit is contained in:
Tyler Starr 2023-07-06 09:51:19 -07:00
parent 1897a74bd6
commit ce3403a6b2
9 changed files with 14 additions and 8 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# ⠀⠀⠀⠀⠀⠀⠀⢠⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀ #⠀⠀⠀⠀⠀⠀⠀⢠⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀
#⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀ #⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀
#⠀⠀⠀⠀⠀⠀⠀⠀⣼⡏⠸⣧⠀⠀⠀⠀⠀⠀⠀⠀ #⠀⠀⠀⠀⠀⠀⠀⠀⣼⡏⠸⣧⠀⠀⠀⠀⠀⠀⠀⠀
#⠠⢤⣤⣤⣤⣤⣤⣴⡿⠀⠀⢻⣦⣤⣤⣤⣤⣤⡤⠄ Tyler Starr (starr-dusT) #⠠⢤⣤⣤⣤⣤⣤⣴⡿⠀⠀⢻⣦⣤⣤⣤⣤⣤⡤⠄ Tyler Starr (starr-dusT)
@ -7,16 +7,16 @@
#⠀⠀⠀⠀⠀⠙⣿⡆⠀⠀⠀⠀⠰⣿⠋⠀⠀⠀⠀⠀ https://tstarr.us #⠀⠀⠀⠀⠀⠙⣿⡆⠀⠀⠀⠀⠰⣿⠋⠀⠀⠀⠀⠀ https://tstarr.us
#⠀⠀⠀⠀⠀⢰⡟⠀⣀⣴⣦⣀⠀⢻⡆⠀⠀⠀⠀⠀ #⠀⠀⠀⠀⠀⢰⡟⠀⣀⣴⣦⣀⠀⢻⡆⠀⠀⠀⠀⠀
#⠀⠀⠀⠀⢀⣾⣧⡾⠛⠁⠈⠙⠷⣼⣿⡀⠀⠀⠀⠀ #⠀⠀⠀⠀⢀⣾⣧⡾⠛⠁⠈⠙⠷⣼⣿⡀⠀⠀⠀⠀
# ⠀⠀⠀⡸⠟⠁⠀⠀⠀⠀⠀⠀⠈⠛⢧⠀⠀⠀⠀ #⠀⠀⠀⡸⠟⠁⠀⠀⠀⠀⠀⠀⠈⠛⢧⠀⠀⠀⠀
# #
# Launch applications with fzf. # Launch applications with fzf.
desktop_file() { desktop_file() {
find /usr/share/applications -name "*.desktop" 2>/dev/null \ find /usr/share/applications -name "*.desktop"
&& find /usr/local/share/applications -name "*.desktop" 2>/dev/null \ find /usr/local/share/applications -name "*.desktop"
&& find "$HOME/.local/share/applications" -name "*.desktop" 2>/dev/null \ find "$HOME/.local/share/applications" -name "*.desktop"
&& find /var/lib/flatpak/exports/share/applications -name "*.desktop" 2>/dev/null \ find /var/lib/flatpak/exports/share/applications -name "*.desktop"
&& find "$HOME/.local/share/flatpak/exports/share/applications" -name "*.desktop" 2>/dev/null find "$HOME/.local/share/flatpak/exports/share/applications" -name "*.desktop"
} }
selected="$(desktop_file | sed 's/.desktop//g' | sort | fzf -e -i -m --reverse --delimiter / --with-nth -1)" selected="$(desktop_file | sed 's/.desktop//g' | sort | fzf -e -i -m --reverse --delimiter / --with-nth -1)"

View File

@ -71,3 +71,4 @@ alias n="nnn -e"
export NNN_FCOLORS='0000E6310000000000000000' export NNN_FCOLORS='0000E6310000000000000000'
export NNN_PLUG='f:finder;o:fzopen;d:diffs;t:nmount;v:imgview;q:preview-tui' export NNN_PLUG='f:finder;o:fzopen;d:diffs;t:nmount;v:imgview;q:preview-tui'
export NNN_FIFO="/tmp/nnn.fifo" export NNN_FIFO="/tmp/nnn.fifo"
export NNN_TRASH=1

View File

@ -1 +1,3 @@
# TODO # TODO
- Figure out if LTS kernel helps Dota2

View File

@ -14,6 +14,7 @@
- playerctl - playerctl
- xorg-xwayland - xorg-xwayland
- bc # needed for my sway status script - bc # needed for my sway status script
- python-i3ipc
state: present state: present
become: true become: true

View File

@ -20,6 +20,7 @@
- unzip - unzip
- chezmoi - chezmoi
- dbus-broker - dbus-broker
- vulkan-tools
state: present state: present
become: true become: true

View File

@ -15,6 +15,7 @@
- vdirsyncer # Synchronize calendars and addressbooks - vdirsyncer # Synchronize calendars and addressbooks
- neofetch # Simple system information script - neofetch # Simple system information script
- python-setuptools - python-setuptools
- bashtop
state: present state: present
become: true become: true

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

BIN
provision/arch/install.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 KiB

View File

@ -7,7 +7,7 @@ Jumpstart scripts to install Arch with packages and configs I use.
1. Install Arch with `archinstall` and the following settings: 1. Install Arch with `archinstall` and the following settings:
![Install Options](https://github.com/starr-dusT/dotfiles/blob/master/provision/arch/img/install.png?raw=true) ![Install Options](https://github.com/starr-dusT/dotfiles/blob/master/provision/arch/install.jpg?raw=true)
2. Edit fstab for btrfs subvolumes to have `rw,noatime,compress=zstd`. 2. Edit fstab for btrfs subvolumes to have `rw,noatime,compress=zstd`.