This commit is contained in:
DeveloperDurp 2025-06-15 15:47:24 -05:00
parent a96e85fd71
commit 38c58c45b0
5 changed files with 24 additions and 3 deletions

View file

@ -4,10 +4,17 @@
profile: Some(Flat), profile: Some(Flat),
speed: 0.0, speed: 0.0,
)), )),
click_method: Some(Clickfinger),
scroll_config: Some(( scroll_config: Some((
method: Some(TwoFinger), method: Some(TwoFinger),
natural_scroll: Some(false), natural_scroll: Some(false),
scroll_button: None, scroll_button: None,
scroll_factor: None, scroll_factor: None,
)), )),
tap_config: Some((
enabled: true,
button_map: Some(LeftRightMiddle),
drag: true,
drag_lock: false,
)),
) )

View file

@ -1 +1 @@
false true

View file

@ -16,8 +16,17 @@ new() {
return return
fi fi
if [ -d "$name" ]; then
dir="$name"
else
# If 'name' isn't a directory, assume it's a subfolder name and search within "Documents/gitlab"
dir=$(find "$HOME/Documents/gitlab" -mindepth 2 -maxdepth 2 -type d | grep "$name$" | head -n 1) dir=$(find "$HOME/Documents/gitlab" -mindepth 2 -maxdepth 2 -type d | grep "$name$" | head -n 1)
if [ -z "$dir" ]; then
echo "Error: Directory not found for '$name' in Documents/gitlab." >&2
return 1 # Or exit, depending on your script's error handling
fi
fi
fi fi
if [ -z "$dir" ]; then if [ -z "$dir" ]; then

View file

@ -3,6 +3,8 @@ required_packages_brew:
- zsh-history-substring-search - zsh-history-substring-search
- zsh-autosuggestions - zsh-autosuggestions
- istioctl - istioctl
- oven-sh/bun/bun
- pkl
required_packages_pacman: required_packages_pacman:
- sway - sway
@ -109,6 +111,7 @@ required_packages_pacman:
- python-adblock - python-adblock
- linux-headers - linux-headers
- traceroute - traceroute
- task
flatpak_remote: flatpak_remote:
- { name: "flathub", url: "https://dl.flathub.org/repo/flathub.flatpakrepo" } - { name: "flathub", url: "https://dl.flathub.org/repo/flathub.flatpakrepo" }
@ -147,6 +150,8 @@ go_apps:
- github.com/air-verse/air@latest - github.com/air-verse/air@latest
- golang.org/x/tools/gopls@latest - golang.org/x/tools/gopls@latest
- github.com/nats-io/natscli/nats@latest - github.com/nats-io/natscli/nats@latest
- github.com/go-task/task/v3/cmd/task@latest
- github.com/a-h/templ/cmd/templ@latest
yay: yay:
- nwg-look - nwg-look