mirror of
https://github.com/fscotto/infra.git
synced 2026-07-29 16:20:01 +00:00
Compare commits
7 Commits
main
...
d8ba674df7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d8ba674df7 | ||
|
|
7327bab7f2 | ||
|
|
e6467017d9 | ||
|
|
5d45955cec | ||
|
|
c34e9dccb9 | ||
|
|
27e6541357 | ||
|
|
f4b9b35c4e |
@@ -206,6 +206,10 @@ desktop_sway_dotfiles:
|
|||||||
src: .config/wlogout/
|
src: .config/wlogout/
|
||||||
dest: .config/wlogout/
|
dest: .config/wlogout/
|
||||||
mode: preserve
|
mode: preserve
|
||||||
|
- name: foot config
|
||||||
|
src: .config/foot/
|
||||||
|
dest: .config/foot/
|
||||||
|
mode: preserve
|
||||||
|
|
||||||
desktop_flatpak_packages:
|
desktop_flatpak_packages:
|
||||||
- be.alexandervanhee.gradia
|
- be.alexandervanhee.gradia
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ void_packages_base:
|
|||||||
- elogind
|
- elogind
|
||||||
- fastfetch
|
- fastfetch
|
||||||
- fuse3
|
- fuse3
|
||||||
|
- fuse-sshfs
|
||||||
- gcc
|
- gcc
|
||||||
- gdb
|
- gdb
|
||||||
- gist
|
- gist
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
workstation_manage_opencode: true
|
workstation_manage_opencode: true
|
||||||
|
workstation_manage_ibm_bob: true
|
||||||
|
workstation_ibm_bob_install_url: "https://bob.ibm.com/download/bobshell.sh"
|
||||||
workstation_npm_packages: "{{ ai_agents_npm_packages + [] }}"
|
workstation_npm_packages: "{{ ai_agents_npm_packages + [] }}"
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ enabled_services:
|
|||||||
- docker
|
- docker
|
||||||
|
|
||||||
workstation_dev_wsl_packages:
|
workstation_dev_wsl_packages:
|
||||||
|
- lazygit
|
||||||
- pinentry-curses
|
- pinentry-curses
|
||||||
- python3-pip
|
- python3-pip
|
||||||
workstation_dev_wsl_excluded_packages:
|
workstation_dev_wsl_excluded_packages:
|
||||||
|
|||||||
@@ -48,3 +48,15 @@
|
|||||||
- workstation_npm_packages | length > 0
|
- workstation_npm_packages | length > 0
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.name }}"
|
label: "{{ item.name }}"
|
||||||
|
|
||||||
|
- name: Install IBM Bob coding agent
|
||||||
|
tags: [packages, ai_agents]
|
||||||
|
ansible.builtin.shell: >
|
||||||
|
curl -fsSL {{ workstation_ibm_bob_install_url }} | bash
|
||||||
|
args:
|
||||||
|
executable: /bin/bash
|
||||||
|
creates: /usr/local/bin/bob
|
||||||
|
become: true
|
||||||
|
when:
|
||||||
|
- workstation_manage_ibm_bob | default(false)
|
||||||
|
- workstation_ibm_bob_install_url | length > 0
|
||||||
|
|||||||
@@ -24,13 +24,19 @@
|
|||||||
|
|
||||||
[merge]
|
[merge]
|
||||||
conflictstyle = diff3
|
conflictstyle = diff3
|
||||||
tool = meld
|
tool = vscode
|
||||||
|
|
||||||
[mergetool]
|
[mergetool]
|
||||||
prompt = false
|
prompt = false
|
||||||
|
|
||||||
|
[mergetool "vscode"]
|
||||||
|
cmd = code --reuse-window --wait $MERGED
|
||||||
|
|
||||||
[diff]
|
[diff]
|
||||||
tool = meld
|
tool = vscode
|
||||||
|
|
||||||
|
[difftool "vscode"]
|
||||||
|
cmd = code --reuse-window --wait --diff $LOCAL $REMOTE
|
||||||
|
|
||||||
[color]
|
[color]
|
||||||
ui = always
|
ui = always
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ height = (0, 120)
|
|||||||
origin = top-right
|
origin = top-right
|
||||||
offset = (20, 40)
|
offset = (20, 40)
|
||||||
|
|
||||||
font = LiterationMono Nerd Font 10
|
font = NotoSans NF 10
|
||||||
line_height = 2
|
line_height = 2
|
||||||
|
|
||||||
padding = 12
|
padding = 12
|
||||||
|
|||||||
5
dotfiles/desktop/.config/foot/foot.ini
Normal file
5
dotfiles/desktop/.config/foot/foot.ini
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
[main]
|
||||||
|
font = Liberation Mono:size=14
|
||||||
|
|
||||||
|
[colors-dark]
|
||||||
|
background = 000000
|
||||||
@@ -14,3 +14,6 @@ sub-font-size=48
|
|||||||
|
|
||||||
# Output
|
# Output
|
||||||
terminal=yes
|
terminal=yes
|
||||||
|
|
||||||
|
# Inhebit screensaver while playing video
|
||||||
|
stop-screensaver=yes
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ configuration {
|
|||||||
modi: "drun,run,window";
|
modi: "drun,run,window";
|
||||||
show-icons: true;
|
show-icons: true;
|
||||||
icon-theme: "Yaru";
|
icon-theme: "Yaru";
|
||||||
font: "LiterationMono Nerd Font 11";
|
font: "NotoSans NF 11";
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set $mod Mod4
|
set $mod Mod4
|
||||||
|
|
||||||
font pango:LiterationMono Nerd Font 10
|
font pango:NotoSans NF 10
|
||||||
|
|
||||||
# vim-like directions
|
# vim-like directions
|
||||||
set $left h
|
set $left h
|
||||||
@@ -114,6 +114,8 @@ exec dex --autostart --environment sway
|
|||||||
exec gnome-keyring-daemon --start --components=secrets
|
exec gnome-keyring-daemon --start --components=secrets
|
||||||
exec_always ~/.config/sway/scripts/setup-gtk-theme.sh
|
exec_always ~/.config/sway/scripts/setup-gtk-theme.sh
|
||||||
exec /usr/libexec/xdg-desktop-portal
|
exec /usr/libexec/xdg-desktop-portal
|
||||||
|
exec /usr/libexec/xdg-desktop-portal-wlr
|
||||||
|
exec /usr/libexec/xdg-desktop-portal-gtk
|
||||||
|
|
||||||
# Audio
|
# Audio
|
||||||
exec pipewire
|
exec pipewire
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
* {
|
* {
|
||||||
font-family: "LiterationMono Nerd Font", "Symbols Nerd Font Mono", monospace;
|
font-family: "NotoSans NF";
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,10 +7,10 @@
|
|||||||
(load-theme 'nordic-night t))
|
(load-theme 'nordic-night t))
|
||||||
|
|
||||||
;; Setting default font
|
;; Setting default font
|
||||||
(set-frame-font "LiterationMono Nerd Font 14" nil t)
|
(set-frame-font "UbuntuSansMono Nerd Font 14" nil t)
|
||||||
|
|
||||||
(add-to-list 'default-frame-alist
|
(add-to-list 'default-frame-alist
|
||||||
'(font . "FantasqueSansM Nerd Font-14"))
|
'(font . "UbuntuSansMono Nerd Font-14"))
|
||||||
|
|
||||||
;; Remove toolbar
|
;; Remove toolbar
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
|
|||||||
Reference in New Issue
Block a user