Compare commits
6 Commits
8b6e665db3
...
4a9cd06654
| Author | SHA1 | Date | |
|---|---|---|---|
| 4a9cd06654 | |||
| c36a689d8f | |||
| 0790da74dc | |||
| 7be9c3a82f | |||
| 650157478d | |||
| f4c3cc8b8e |
@@ -554,6 +554,10 @@
|
||||
|
||||
return 0
|
||||
}
|
||||
alias_docker_other: |
|
||||
alias docker-stop="docker compose down"
|
||||
alias docker-start="docker compose up -d && docker compose start"
|
||||
alias docker-prep="docker compose pull && docker compose build"
|
||||
alias_code_check: |
|
||||
alias code-check='
|
||||
echo "Checking ~/Code directory for git changes."
|
||||
@@ -1024,6 +1028,31 @@
|
||||
. "$global_function"
|
||||
fi
|
||||
done
|
||||
alias_flatpak_clean: |
|
||||
alias flatpak-clean="flatpak uninstall --unused"
|
||||
alias_commit: |
|
||||
# TBD function to git add, git commit, and git push in a single go.
|
||||
# Already exists on Termux env. Needs tested.
|
||||
function commit_usage {
|
||||
echo 'Usage: commit "This is a commit message"'
|
||||
}
|
||||
function commit {
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "ERROR: Message must be provided."
|
||||
commit_usage
|
||||
return 1
|
||||
fi
|
||||
if [[ "$1" == "-h"* || "$1" == "--h"* ]]; then
|
||||
commit_usage
|
||||
fi
|
||||
message="$1"
|
||||
git add . &&
|
||||
git commit -m "$message" &&
|
||||
git push
|
||||
|
||||
status="$?"
|
||||
return "$status"
|
||||
}
|
||||
|
||||
- name: General | Account Management | Users | Files | Common Variable
|
||||
set_fact:
|
||||
@@ -1104,6 +1133,8 @@
|
||||
{{ alias_reload_bash }}
|
||||
{{ alias_hugo_server }}
|
||||
{{ global_functions }}
|
||||
{{ alias_docker_other }}
|
||||
{{ alias_flatpak_clean }}
|
||||
|
||||
- name: General | Account Management | Users | Files | .bashrc
|
||||
blockinfile:
|
||||
|
||||
@@ -36,7 +36,6 @@
|
||||
flatpaks_generic:
|
||||
- { app: "org.mozilla.firefox", name: "firefox-flatpak", extra: "" }
|
||||
- { app: "io.gitlab.librewolf-community", name: "librewolf", extra: "" }
|
||||
- { app: "chat.simplex.simplex", name: "simplex", extra: "" }
|
||||
- { app: "org.signal.Signal", name: "signal", extra: "" }
|
||||
- { app: "im.riot.Riot", name: "element", extra: "" }
|
||||
- { app: "org.telegram.desktop", name: "telegram", extra: "" }
|
||||
@@ -44,6 +43,7 @@
|
||||
- { app: "org.libreoffice.LibreOffice", name: "office", extra: "" }
|
||||
- { app: "com.transmissionbt.Transmission", name: "transmission", extra: "" }
|
||||
- { app: "app.grayjay.Grayjay", name: "grayjay", extra: "" }
|
||||
- { app: "com.github.xournalpp.xournalpp", name: "xournal", extra: "" }
|
||||
flatpaks_coding:
|
||||
- { app: "com.vscodium.codium", name: "codium-flatpak", extra: "" }
|
||||
- { app: "com.google.AndroidStudio", name: "android-studio", extra: "" }
|
||||
@@ -72,11 +72,12 @@
|
||||
# 2022-11-20 No longer using any of these and they're taking up a lot of space. #
|
||||
- { app: "com.jetbrains.PyCharm-Community", name: "pycharm", extra: "" }
|
||||
# End 2022-11-20 #
|
||||
- { app: "io.lbry.lbry-app", name: "lbry", extra: "dbus-launch" } # No longer supported, noticed 2023-09-01.
|
||||
- { app: "chat.delta.desktop", name: "deltachat", extra: "" } # No longer used, removed 2023-12-18.
|
||||
- { app: "org.gnome.Geary", name: "geary", extra: "" } # No longer used, removed 2024-12-15
|
||||
- { app: "io.lbry.lbry-app", name: "lbry", extra: "dbus-launch" } # 2023-09-01, Noticed it is no longer supported.
|
||||
- { app: "chat.delta.desktop", name: "deltachat", extra: "" } # 2023-12-18, No longer used.
|
||||
- { app: "org.gnome.Geary", name: "geary", extra: "" } # 2024-12-15, No longer used.
|
||||
- { app: "org.rncbc.qsynth", name: "qsynth", extra: "" } # 2024-12-15, Not worth the setup, use LMMS or VMPK.
|
||||
- { app: "org.godotengine.Godot", name: "godot", extra: "" } # 20250831 Stopped playing with this months / years ago.
|
||||
- { app: "org.godotengine.Godot", name: "godot", extra: "" } # 2025-08-31, Stopped playing with this months / years ago. Seemed cool but Flutter is working well for this purpose.
|
||||
- { app: "chat.simplex.simplex", name: "simplex", extra: "" } # 2025-11-22, Takes a ton of space and does not work without interacting with phone.
|
||||
|
||||
# Generic #
|
||||
|
||||
|
||||
@@ -274,6 +274,13 @@
|
||||
|
||||
dconf write /org/gnome/desktop/media-handling/autorun-never true && inc_dconf &&
|
||||
|
||||
## Gnome Terminal ##
|
||||
|
||||
# TBD: Do not start new tabs in previous tab's directory.
|
||||
# The profile ID is likely unique and will need to be retrieved first.
|
||||
#/org/gnome/terminal/legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9/preserve-working-directory
|
||||
#'never'
|
||||
|
||||
## Success ##
|
||||
|
||||
sleep 0 ||
|
||||
|
||||
Reference in New Issue
Block a user