ansible/roles/desktop/tasks/main.yml

217 lines
5.7 KiB
YAML
Raw Normal View History

#!/usr/bin/ansible-playbook
# vim:ft=ansible:
---
- name: Configure desktop system
block:
- name: Create config directories
file:
path: "{{ item }}"
state: directory
recurse: yes
loop:
- "/etc/X11/xorg.conf.d"
2020-04-15 09:57:41 -05:00
- name: Nuke some configs
file:
path: "{{ item }}"
state: absent
loop:
# Works around a bug where this causes failed logins
- "/etc/X11/Xsession.d/70im-config_launch"
- name: Copy system configs
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
mode: "{{ item.mode }}"
loop:
- { src: "hosts", dest: "/etc/hosts", mode: "0644" }
- { src: "nomouseaccel.conf", dest: "/etc/X11/xorg.conf.d/90-mouse-acceleration.conf", mode: "0644" }
- { src: "i3.desktop", dest: "/usr/share/xsessions/i3-custom.desktop", mode: "0644" }
2020-05-24 23:24:00 -05:00
- { src: "startx.desktop", dest: "/usr/share/xsessions/startx-custom.desktop", mode: "0644" }
- name: Copy udev rules
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
mode: "{{ item.mode }}"
loop:
- { src: "g810-led.rules", dest: "/etc/udev/rules.d/50-g810-led.rules", mode: "0644" }
2020-03-21 22:21:25 -05:00
- { src: "switch-rcm.rules", dest: "/etc/udev/rules.d/50-switch-rcm.rules", mode: "0644" }
notify: reload udev
- name: Enable i386 architecture
command: /usr/bin/dpkg --add-architecture i386
- name: Add repo keys
apt_key:
keyserver: 'keyserver.ubuntu.com'
id: "{{ item }}"
loop:
- "3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF" # Monodevelop
- name: Add repos
apt_repository:
repo: "{{ item }}"
loop:
- "deb https://download.mono-project.com/repo/ubuntu vs-bionic main" # Monodevelop; see above for key
2020-03-21 23:01:01 -05:00
- "ppa:drewwalton19216801/dolphin-master-cosmic" # Because Dolphin doesn't update their shit
2020-05-24 23:00:09 -05:00
- "ppa:kgilmer/speed-ricer" # Rice rice rice
2020-04-15 08:58:13 -05:00
- "ppa:lutris-team/lutris"
- name: Update and upgrade apt packages
apt:
upgrade: "yes"
update_cache: yes
# One day
cache_valid_time: 86400
2020-05-24 23:03:15 -05:00
- name: Install packages
apt:
2020-04-15 08:59:19 -05:00
name:
2020-05-24 23:03:15 -05:00
# Terminal packages
2020-03-16 05:45:41 -05:00
- adb
- build-essential
2020-03-01 01:52:07 -06:00
- earlyoom
2020-03-16 05:45:41 -05:00
- fastboot
2020-02-17 20:28:38 -06:00
- ffmpeg
- git
2020-05-28 22:42:40 -05:00
- imagemagick
- lua-check # I am good ComputerCraft guy
2020-05-28 21:52:53 -05:00
- neofetch
2020-04-22 23:13:48 -05:00
- network-manager-openconnect
2020-02-20 20:23:59 -06:00
- network-manager-openvpn
- openjdk-8-jre # For Minecraft
2020-04-18 01:29:28 -05:00
- pwgen
2020-03-04 00:44:11 -06:00
- python3-appdirs
- python3-eyed3
- python3-pip
2020-03-07 16:58:26 -06:00
- python3-pyqt5
2020-03-16 17:23:12 -05:00
- python3-usb # fuselee-gelee
2020-03-03 16:59:57 -06:00
- python3-venv
- qt5-default # For Multimc, should be installed on Kubuntu
2020-03-02 05:51:31 -06:00
- units
- vim
- wamerican # Dictionaries because I have like two scripts that use them
- wamerican-large
- wamerican-huge
- wamerican-insane
- wine
- wine-binfmt
- xz-utils # For Ansible deb support
2020-05-24 23:03:15 -05:00
# Fonts
- fonts-inconsolata
- fonts-noto
- fonts-roboto
2020-05-24 23:03:15 -05:00
# DE
2020-05-24 23:05:12 -05:00
- compton
- dunst
- i3-gaps-wm
- i3lock
2020-05-24 23:03:15 -05:00
- kubuntu-desktop
2020-05-24 23:45:29 -05:00
- papirus-icon-theme
2020-05-31 17:33:59 -05:00
- pavucontrol-qt
2020-05-24 23:05:12 -05:00
- polybar
2020-05-31 17:34:35 -05:00
- xbacklight
2020-05-24 23:03:15 -05:00
# Desktop applications
2020-03-04 04:22:33 -06:00
- cantata
- chromium-browser
2020-05-10 01:04:43 -05:00
- clonezilla
2020-03-21 23:01:01 -05:00
- dolphin-emu-master
2020-03-21 22:35:53 -05:00
- dolphin-plugins
2020-03-21 22:41:18 -05:00
- filelight
- filezilla
- firefox
- g810-led
- gimp
2020-05-31 20:40:23 -05:00
- inkscape
2020-05-02 10:21:44 -05:00
- joy2key
- joystick
2020-02-18 02:53:12 -06:00
- kcolorchooser
- kdenlive
- keepassxc
2020-05-29 17:39:04 -05:00
- krita
2020-05-28 21:52:53 -05:00
- libnotify-bin
- lutris
- mesa-vulkan-drivers
- monodevelop
- mpc
- mpd
2020-02-17 20:28:38 -06:00
- mpv
2020-03-25 06:57:45 -05:00
- mupen64plus-qt
- nextcloud-desktop
2020-02-17 20:28:38 -06:00
- obs-studio
- pidgin
- pidgin-libnotify
- pidgin-plugin-pack
2020-03-23 02:28:22 -05:00
- pulseeffects
- qbittorrent
- redshift
- rofi
2020-05-28 21:52:53 -05:00
- scrot
- steam-installer
- syncthing-gtk
- telegram-desktop
2020-02-22 16:35:01 -06:00
- torbrowser-launcher
- virt-manager
- vulkan-tools
- vulkan-utils
- winetricks
2020-03-27 08:12:02 -05:00
- xdotool
2020-05-12 08:05:54 -05:00
- zim
- "libgl1-mesa-dri:i386"
- "mesa-vulkan-drivers:i386"
2020-05-24 23:03:15 -05:00
# Games
- minetest
2020-05-02 05:55:40 -05:00
- name: Install Focal-exclusive desktop applications
apt:
name:
- piper
2020-05-24 23:05:45 -05:00
when: ansible_distribution_release == "focal"
2020-05-24 23:03:15 -05:00
- name: Install packages without recommends
apt:
2020-05-24 23:03:15 -05:00
install_recommends: no
name:
2020-05-24 23:03:15 -05:00
- php # Dev stuff
- php-xml
- name: Install out-of-repo packages
apt:
deb: "{{ item }}"
loop:
- "https://github.com/MultiMC/MultiMC5/releases/download/0.6.8/multimc_1.4-1.deb"
2020-05-26 23:40:18 -05:00
- "https://d11yldzmag5yn.cloudfront.net/prod/5.0.413237.0524/zoom_amd64.deb"
2020-04-15 09:01:11 -05:00
- name: Install desktop applications through pip3
pip:
executable: "/usr/bin/pip3"
2020-04-15 08:59:19 -05:00
name:
- protontricks
- youtube-dl
2020-04-15 09:01:11 -05:00
- name: Install desktop applications through Snap
snap:
2020-04-15 08:59:19 -05:00
name:
- discord
2020-05-29 17:50:58 -05:00
- pixelorama
- riot-web
2020-03-16 05:45:41 -05:00
- scrcpy # Remote Android viewing
- name: Install Snap applications classically
snap:
classic: yes
name: "{{ item }}"
loop:
- slack
2020-05-24 23:03:15 -05:00
- name: Remove desktop applications through APT
apt:
state: absent
name:
- ktorrent
2020-02-22 16:35:01 -06:00
- name: Stop services
systemd:
name: "{{ item }}"
enabled: no
state: stopped
loop:
- mpd.socket
- mpd.service
2020-05-31 20:31:54 -05:00
- motd-news.service
- motd-news.timer
- name: Start services
systemd:
name: "{{ item }}"
enabled: yes
state: started
loop:
- syncthing@salt.service
become: yes