Compare commits
5 commits
5fdd205dd4
...
7e8ae81338
Author | SHA1 | Date | |
---|---|---|---|
|
7e8ae81338 | ||
|
eeb81e05ee | ||
|
7cac7b27ae | ||
|
8cd0880733 | ||
|
8b7cef9e80 |
7 changed files with 66 additions and 8 deletions
15
desktop.yml
Normal file
15
desktop.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
- name: Install devconf desktop utils
|
||||
hosts: localhost
|
||||
gather_facts: true
|
||||
tasks:
|
||||
- name: Install alacritty
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: alacritty
|
||||
state: latest
|
||||
- name: Install lm_sensors
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: lm_sensors
|
||||
state: latest
|
||||
|
28
shell.yml
Normal file
28
shell.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
- name: Install devconf shell utils
|
||||
hosts: localhost
|
||||
gather_facts: true
|
||||
tasks:
|
||||
- name: Install RPMFusion free
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: "https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-42.noarch.rpm"
|
||||
- name: Install RPMFusion nonfree
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: "https://mirrors.rpmfusion.org/free/fedora/rpmfusion-nonfree-release-42.noarch.rpm"
|
||||
- name: Install vim
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: vim
|
||||
state: latest
|
||||
- name: Install fish
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: fish
|
||||
state: latest
|
||||
- name: Install fastfetch
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
name: fastfetch
|
||||
state: latest
|
||||
|
|
@ -1,9 +1,12 @@
|
|||
fish_add_path ~/.local/bin
|
||||
fish_add_path ~/.cargo/bin
|
||||
|
||||
if status is-interactive
|
||||
# Commands to run in interactive sessions can go here
|
||||
set -gx EDITOR vim
|
||||
|
||||
function fish_greeting
|
||||
fastfetch
|
||||
end
|
||||
|
||||
# tabtab source for packages
|
||||
# uninstall by removing these lines
|
||||
[ -f ~/.config/tabtab/fish/__tabtab.fish ]; and . ~/.config/tabtab/fish/__tabtab.fish; or true
|
||||
|
@ -14,7 +17,3 @@ if not string match -q -- $PNPM_HOME $PATH
|
|||
set -gx PATH "$PNPM_HOME" $PATH
|
||||
end
|
||||
# pnpm end
|
||||
|
||||
function fish_greeting
|
||||
fastfetch
|
||||
end
|
||||
|
|
17
shell/.config/systemd/user/appimaged.service
Normal file
17
shell/.config/systemd/user/appimaged.service
Normal file
|
@ -0,0 +1,17 @@
|
|||
[Unit]
|
||||
Description=AppImage system integration daemon
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/home/leon/Downloads/appimaged-869-x86_64.AppImage
|
||||
|
||||
LimitNOFILE=65536
|
||||
|
||||
RestartSec=3
|
||||
Restart=always
|
||||
|
||||
Environment=LAUNCHED_BY_SYSTEMD=1
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
|
@ -0,0 +1 @@
|
|||
/home/leon/.config/systemd/user/appimaged.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/user/appimagelauncherd.service
|
|
@ -1 +0,0 @@
|
|||
/usr/lib/systemd/user/syncthing.service
|
Loading…
Reference in a new issue