mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
47 lines
1.9 KiB
YAML
47 lines
1.9 KiB
YAML
- name: Install desktop arch packages
|
|
pacman:
|
|
name:
|
|
- xorg # X.org meta-package
|
|
- xorg-xinit
|
|
- xterm # X Terminal Emulator
|
|
- alacritty # Cross-platform, GPU-accelerated terminal emulator
|
|
- mpv # Video player based on MPlayer/mplayer2
|
|
- python-i3ipc # Improved Python library to control i3wm and sway
|
|
- lxappearance # LXDE Theme Switcher
|
|
- blueman # GTK+ Bluetooth Manager
|
|
- dunst # Lightweight and customizable notification daemon
|
|
- ffmpeg # Decoding, encoding and streaming software
|
|
- i3 # Improved tiling window manager
|
|
- i3status # Status bar generator for i3bar, dzen2, xmobar or similar programs
|
|
- nitrogen # Background browser and setter for X with support for Xinerama
|
|
- nvidia-dkms # NVIDIA drivers for linux - Libraries and Utilities
|
|
- lib32-nvidia-utils # NVIDIA drivers for linux - common libraries (32bit)
|
|
- pavucontrol # PulseAudio Volume Control
|
|
- polybar # Fast and easy-to-use status bar
|
|
- rofi # Window switcher, run dialog and dmenu replacement
|
|
- pcmanfm # LXDE file manager
|
|
- autorandr # Automatically select a display configuration based on connected devices
|
|
- clipmenu # Clipboard management using dmenu
|
|
- flameshot # Powerful yet simple to use screenshot software for GNU/Linux
|
|
- firefox
|
|
state: present
|
|
become: true
|
|
|
|
- name: Install desktop aur packages
|
|
yay:
|
|
name:
|
|
- rofi-rbw # Simplistic password typer/copier using rofi and wofi
|
|
- nerd-fonts-complete
|
|
state: present
|
|
become: true
|
|
|
|
- name: Install desktop flatpaks
|
|
flatpak:
|
|
name:
|
|
- com.discordapp.Discord # VoIP and instant messaging social platform
|
|
- org.gimp.GIMP # Create images and edit photographs
|
|
- org.inkscape.Inkscape # Vector Graphics Editor
|
|
- com.github.tchx84.Flatseal # Manage Flatpak permissions
|
|
state: present
|
|
become: true
|