Compare commits

...

3 Commits

3 changed files with 39 additions and 8 deletions
+17 -3
View File
@@ -49,8 +49,8 @@ floating_modifier $mod
tiling_drag modifier titlebar
# start a terminal
bindsym $mod+Return exec st
# Used to be i3-sensible-terminal, but was calling gnome-terminal :c
bindsym $mod+Return exec i3-sensible-terminal
#bindsym $mod+Return exec st
# kill focused window
#bindsym $mod+Shift+q kill
@@ -117,6 +117,19 @@ bindsym $mod+a focus parent
#bindsym $mod+d focus child
## Extra Program Shortcuts ##
# Theming.
bindsym $mod+t exec lxappearance
# Manage files.
bindsym $mod+m exec thunar
# Internet.
#bindsym $mod+i exec firefox
bindsym $mod+i exec firefox-flatpak
## Brightness ##
# Use the bracket keys to change the brightness.
# light requires sudo privileges unless video group and udev are configured.
@@ -251,7 +264,8 @@ bar {
status_command i3status
}
## Startup Applications ##
exec st
exec i3-sensible-terminal
#exec firefox-flatpak
+8 -3
View File
@@ -122,12 +122,16 @@
## Files ##
- name: General | Account Management | Users | Files | Profile Variables
set_fact:
export_path_additions: export PATH="~/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH"
export_terminal: export TERMINAL="alacritty"
- name: General | Account Management | Users | Files | RC Variables
set_fact:
alias_cp: alias cp='cp -v'
alias_mv: alias mv='mv -v'
alias_rm: alias rm='echo "Use mv ~/TRASH/ instead!"'
export_path_additions: export PATH="~/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH"
function_wttr: |
function weather() {
# 20210301 - Someone showed me an awesome weather API! Had to implement it!
@@ -1113,8 +1117,9 @@
- name: General | Account Management | Users | Files | Common Variable
set_fact:
rc_profile: |
profile_common: |
{{ export_path_additions }}
{{ export_terminal }}
rc_common: |
# Fixes "command not found" when using aliases within functions.
shopt -s expand_aliases
@@ -1198,7 +1203,7 @@
blockinfile:
path: "{{ user_root.home }}/{{ item }}"
block: |
{{ rc_profile }}
{{ profile_common }}
[[ $(whoami) != "root" ]] &&
echo "`date` - Ansible .profile loaded successfully!"
+14 -2
View File
@@ -7,10 +7,16 @@
- name: Workstation | Linux | Software | i3 | Facts | General [1/2]
set_fact:
i3_package: i3
i3_light: light
i3_config: "settings/i3.config"
i3_config_dir: "{{ user_user.home }}/.config/i3"
i3_package: i3
i3_light: light
i3_files: thunar
i3_term: alacritty
i3_theming: lxappearance
i3_theme01: greybird-gtk-theme
i3_theme02: arc-theme
i3_theme03: numix-gtk-theme
- name: Workstation | Linux | Software | i3 | Facts | General [1/2]
set_fact:
@@ -27,6 +33,12 @@
- "{{ i3_package }}"
- "{{ lightdm }}"
- "{{ i3_light }}"
- "{{ i3_files }}"
- "{{ i3_term }}"
- "{{ i3_theming }}"
- "{{ i3_theme01 }}"
- "{{ i3_theme02 }}"
- "{{ i3_theme03 }}"
state: present
update_cache: yes