Compare commits
3 Commits
d8d5f001f2
...
e8eb5c68a7
| Author | SHA1 | Date | |
|---|---|---|---|
| e8eb5c68a7 | |||
| 0887a3bdf0 | |||
| 3861f2fad4 |
@@ -49,8 +49,8 @@ floating_modifier $mod
|
|||||||
tiling_drag modifier titlebar
|
tiling_drag modifier titlebar
|
||||||
|
|
||||||
# start a terminal
|
# start a terminal
|
||||||
bindsym $mod+Return exec st
|
bindsym $mod+Return exec i3-sensible-terminal
|
||||||
# Used to be i3-sensible-terminal, but was calling gnome-terminal :c
|
#bindsym $mod+Return exec st
|
||||||
|
|
||||||
# kill focused window
|
# kill focused window
|
||||||
#bindsym $mod+Shift+q kill
|
#bindsym $mod+Shift+q kill
|
||||||
@@ -117,6 +117,19 @@ bindsym $mod+a focus parent
|
|||||||
#bindsym $mod+d focus child
|
#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 ##
|
## Brightness ##
|
||||||
# Use the bracket keys to change the brightness.
|
# Use the bracket keys to change the brightness.
|
||||||
# light requires sudo privileges unless video group and udev are configured.
|
# light requires sudo privileges unless video group and udev are configured.
|
||||||
@@ -251,7 +264,8 @@ bar {
|
|||||||
status_command i3status
|
status_command i3status
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
## Startup Applications ##
|
## Startup Applications ##
|
||||||
|
|
||||||
exec st
|
exec i3-sensible-terminal
|
||||||
#exec firefox-flatpak
|
#exec firefox-flatpak
|
||||||
|
|||||||
@@ -122,12 +122,16 @@
|
|||||||
|
|
||||||
## Files ##
|
## 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
|
- name: General | Account Management | Users | Files | RC Variables
|
||||||
set_fact:
|
set_fact:
|
||||||
alias_cp: alias cp='cp -v'
|
alias_cp: alias cp='cp -v'
|
||||||
alias_mv: alias mv='mv -v'
|
alias_mv: alias mv='mv -v'
|
||||||
alias_rm: alias rm='echo "Use mv ~/TRASH/ instead!"'
|
alias_rm: alias rm='echo "Use mv ~/TRASH/ instead!"'
|
||||||
export_path_additions: export PATH="~/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH"
|
|
||||||
function_wttr: |
|
function_wttr: |
|
||||||
function weather() {
|
function weather() {
|
||||||
# 20210301 - Someone showed me an awesome weather API! Had to implement it!
|
# 20210301 - Someone showed me an awesome weather API! Had to implement it!
|
||||||
@@ -1113,8 +1117,9 @@
|
|||||||
|
|
||||||
- name: General | Account Management | Users | Files | Common Variable
|
- name: General | Account Management | Users | Files | Common Variable
|
||||||
set_fact:
|
set_fact:
|
||||||
rc_profile: |
|
profile_common: |
|
||||||
{{ export_path_additions }}
|
{{ export_path_additions }}
|
||||||
|
{{ export_terminal }}
|
||||||
rc_common: |
|
rc_common: |
|
||||||
# Fixes "command not found" when using aliases within functions.
|
# Fixes "command not found" when using aliases within functions.
|
||||||
shopt -s expand_aliases
|
shopt -s expand_aliases
|
||||||
@@ -1198,7 +1203,7 @@
|
|||||||
blockinfile:
|
blockinfile:
|
||||||
path: "{{ user_root.home }}/{{ item }}"
|
path: "{{ user_root.home }}/{{ item }}"
|
||||||
block: |
|
block: |
|
||||||
{{ rc_profile }}
|
{{ profile_common }}
|
||||||
|
|
||||||
[[ $(whoami) != "root" ]] &&
|
[[ $(whoami) != "root" ]] &&
|
||||||
echo "`date` - Ansible .profile loaded successfully!"
|
echo "`date` - Ansible .profile loaded successfully!"
|
||||||
|
|||||||
@@ -7,10 +7,16 @@
|
|||||||
|
|
||||||
- name: Workstation | Linux | Software | i3 | Facts | General [1/2]
|
- name: Workstation | Linux | Software | i3 | Facts | General [1/2]
|
||||||
set_fact:
|
set_fact:
|
||||||
i3_package: i3
|
|
||||||
i3_light: light
|
|
||||||
i3_config: "settings/i3.config"
|
i3_config: "settings/i3.config"
|
||||||
i3_config_dir: "{{ user_user.home }}/.config/i3"
|
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]
|
- name: Workstation | Linux | Software | i3 | Facts | General [1/2]
|
||||||
set_fact:
|
set_fact:
|
||||||
@@ -27,6 +33,12 @@
|
|||||||
- "{{ i3_package }}"
|
- "{{ i3_package }}"
|
||||||
- "{{ lightdm }}"
|
- "{{ lightdm }}"
|
||||||
- "{{ i3_light }}"
|
- "{{ i3_light }}"
|
||||||
|
- "{{ i3_files }}"
|
||||||
|
- "{{ i3_term }}"
|
||||||
|
- "{{ i3_theming }}"
|
||||||
|
- "{{ i3_theme01 }}"
|
||||||
|
- "{{ i3_theme02 }}"
|
||||||
|
- "{{ i3_theme03 }}"
|
||||||
state: present
|
state: present
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user