mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Compare commits
7 Commits
c289cd0730
...
0c9b38e507
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0c9b38e507 | ||
|
|
0e2ed5439e | ||
|
|
75a0ee6149 | ||
|
|
2c9c0f883a | ||
|
|
8a58b8153c | ||
|
|
badd1f8495 | ||
|
|
67ee1450f0 |
@@ -10,6 +10,7 @@ if gum confirm "Are you sure you want to remove all preinstalled web apps, TUI w
|
|||||||
omarchy-tui-remove-all
|
omarchy-tui-remove-all
|
||||||
|
|
||||||
omarchy-pkg-drop \
|
omarchy-pkg-drop \
|
||||||
|
aether \
|
||||||
typora \
|
typora \
|
||||||
spotify \
|
spotify \
|
||||||
libreoffice-fresh \
|
libreoffice-fresh \
|
||||||
|
|||||||
@@ -31,4 +31,6 @@ create)
|
|||||||
restore)
|
restore)
|
||||||
sudo limine-snapper-restore
|
sudo limine-snapper-restore
|
||||||
;;
|
;;
|
||||||
|
delete)
|
||||||
|
sudo snapper -c "$config" delete 0
|
||||||
esac
|
esac
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
trap 'echo ""; echo -e "\033[0;31mSomething went wrong during the update!\n\nPlease review the output above carefully, correct the error, and retry the update.\n\nIf you need assistance, get help from the community at https://omarchy.org/discord\033[0m"' ERR
|
trap 'echo ""; echo -e "\033[0;31mSomething went wrong during the update!\n\nPlease review the output above carefully, correct the error, and retry the update.\n\nIf you need assistance, get help from the community at https://omarchy.org/discord\033[0m";omarchy-snapshot delete' ERR
|
||||||
|
|
||||||
if [[ $1 == "-y" ]] || omarchy-update-confirm; then
|
if [[ $1 == "-y" ]] || omarchy-update-confirm; then
|
||||||
omarchy-snapshot create || [ $? -eq 127 ]
|
omarchy-snapshot create || [ $? -eq 127 ]
|
||||||
|
|||||||
@@ -9,3 +9,4 @@ source ~/.local/share/omarchy/default/bash/rc
|
|||||||
#
|
#
|
||||||
# Make an alias for invoking commands you use constantly
|
# Make an alias for invoking commands you use constantly
|
||||||
# alias p='python'
|
# alias p='python'
|
||||||
|
# alias cc="claude --permission-mode=plan --allow-dangerously-skip-permissions"
|
||||||
|
|||||||
@@ -39,3 +39,4 @@ run_logged $OMARCHY_INSTALL/config/hardware/fix-surface-keyboard.sh
|
|||||||
run_logged $OMARCHY_INSTALL/config/hardware/fix-asus-rog-audio-mixer.sh
|
run_logged $OMARCHY_INSTALL/config/hardware/fix-asus-rog-audio-mixer.sh
|
||||||
run_logged $OMARCHY_INSTALL/config/hardware/fix-asus-rog-mic.sh
|
run_logged $OMARCHY_INSTALL/config/hardware/fix-asus-rog-mic.sh
|
||||||
run_logged $OMARCHY_INSTALL/config/hardware/fix-yt6801-ethernet-adapter.sh
|
run_logged $OMARCHY_INSTALL/config/hardware/fix-yt6801-ethernet-adapter.sh
|
||||||
|
run_logged $OMARCHY_INSTALL/config/hardware/fix-synaptic-touchpad.sh
|
||||||
|
|||||||
6
install/config/hardware/fix-synaptic-touchpad.sh
Executable file
6
install/config/hardware/fix-synaptic-touchpad.sh
Executable file
@@ -0,0 +1,6 @@
|
|||||||
|
# Enable Synaptics InterTouch for confirmed touchpads if not already loaded
|
||||||
|
|
||||||
|
if grep -qi synaptics /proc/bus/input/devices \
|
||||||
|
&& ! lsmod | grep -q '^psmouse'; then
|
||||||
|
modprobe psmouse synaptics_intertouch=1
|
||||||
|
fi
|
||||||
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 955 KiB After Width: | Height: | Size: 955 KiB |
|
Before Width: | Height: | Size: 444 KiB After Width: | Height: | Size: 444 KiB |
@@ -1,12 +1,11 @@
|
|||||||
return {
|
return {
|
||||||
-- required for the vantablack nvim theme
|
|
||||||
{
|
|
||||||
"bjarneo/aether.nvim",
|
|
||||||
branch = "v2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"bjarneo/vantablack.nvim",
|
"bjarneo/vantablack.nvim",
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
|
dependencies = {
|
||||||
|
"bjarneo/aether.nvim",
|
||||||
|
branch = "v2"
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"LazyVim/LazyVim",
|
"LazyVim/LazyVim",
|
||||||
|
|||||||
Reference in New Issue
Block a user