-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for flatpak, neovim, xorg
- Loading branch information
Showing
11 changed files
with
232 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
- name: Install required CLI utilities | ||
become: true | ||
package: | ||
name: | ||
- ansible | ||
- atool | ||
- autoconf | ||
- build-essential | ||
- curl | ||
- dkms # Dynamic Kernel Module Support | ||
- ffmpeg | ||
- firmware-misc-nonfree | ||
- fzf | ||
- gcc | ||
- git | ||
- libtool | ||
- lm-sensors | ||
- make | ||
- man | ||
- network-manager # nmtui | ||
- network-manager-gnome # nm-connection-editor | ||
- nvidia-driver | ||
- ripgrep | ||
- stow | ||
- sudo | ||
- tree | ||
- unzip | ||
- wget | ||
tags: | ||
- minimal-install | ||
- install | ||
- core | ||
|
||
- name: Install additional CLI utilities | ||
become: true | ||
package: | ||
name: | ||
- htop | ||
- neofetch | ||
- nmap | ||
- ranger | ||
- cowsay | ||
tags: | ||
- install | ||
- core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
- name: Download Discord | ||
get_url: | ||
url: "https://discord.com/api/download?platform=linux&format=deb" | ||
dest: /tmp/discord.deb | ||
tags: | ||
- minimal-install | ||
- install | ||
- discord | ||
|
||
- name: Install Discord | ||
become: true | ||
apt: | ||
deb: /tmp/discord.deb | ||
state: present | ||
tags: | ||
- minimal-install | ||
- install | ||
- discord | ||
|
||
- name: Remove Discord .deb package | ||
file: | ||
path: /tmp/discord.deb | ||
state: absent | ||
tags: | ||
- minimal-install | ||
- install | ||
- discord |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
- name: Install flatpak | ||
become: true | ||
package: | ||
name: | ||
- flatpak | ||
tags: | ||
- minimal-install | ||
- install | ||
- flatpak | ||
|
||
- name: Add flathub repo | ||
become: true | ||
shell: flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | ||
tags: | ||
- minimal-install | ||
- install | ||
- flatpak | ||
|
||
- name: Install flatpak core utilities | ||
flatpak: | ||
name: | ||
- com.github.tchx84.Flatseal | ||
- com.vivaldi.Vivaldi | ||
|
||
tags: | ||
- minimal-install | ||
- install | ||
- flatpak | ||
|
||
- name: Install flatpak GUI extras | ||
flatpak: | ||
name: | ||
- camp.nook.nookdesktop | ||
- com.axosoft.GitKraken | ||
- com.slack.Slack | ||
- com.spotify.Client | ||
- io.github.shiftey.Desktop | ||
- org.signal.Signal | ||
- org.qbittorrent.qBittorrent | ||
tags: | ||
- install | ||
- flatpak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
- name: Install Xorg utilities | ||
become: true | ||
package: | ||
name: | ||
- xserver-xorg-core | ||
# - xserver-xorg-video-nvidia | ||
# - xorg-video-abi-11 | ||
- xinit | ||
- xinput | ||
- xclip | ||
- x11-xserver-utils | ||
- libx11-dev | ||
- libxinerama-dev | ||
- libxft-dev | ||
tags: | ||
- minimal-install | ||
- install | ||
- xorg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
- name: Download neovim | ||
become: true | ||
ansible.builtin.shell: | ||
cmd: "curl https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz" | ||
tags: | ||
- minimal-install | ||
- install | ||
- neovim | ||
- name: Remove old neovim directory | ||
become: true | ||
ansible.builtin.shell: | ||
cmd: "rm -rf /opt/nvim-linux64" | ||
tags: | ||
- minimal-install | ||
- install | ||
- neovim | ||
- name: Create neovim directory | ||
become: true | ||
ansible.builtin.shell: | ||
cmd: "mkdir -p /opt/nvim-linux64" | ||
tags: | ||
- minimal-install | ||
- install | ||
- neovim | ||
- name: Change neovim directory to read and execute for everyone | ||
become: true | ||
ansible.builtin.shell: | ||
cmd: "chmod a+rX /opt/nvim-linux64" | ||
tags: | ||
- minimal-install | ||
- install | ||
- neovim | ||
- name: Extract neovim | ||
become: true | ||
ansible.builtin.shell: | ||
cmd: "tar -C /opt -xzf nvim-linux64.tar.gz" | ||
tags: | ||
- minimal-install | ||
- install | ||
- neovim | ||
- name: Create symlink for neovim | ||
become: true | ||
ansible.builtin.shell: | ||
cmd: "ln -sf /opt/nvim-linux64/bin/nvim /usr/local/bin/" | ||
tags: | ||
- minimal-install | ||
- install | ||
- neovim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.