diff --git a/decrypt.sh b/decrypt.sh new file mode 100755 index 0000000..5239e47 --- /dev/null +++ b/decrypt.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +echo $1 | openssl aes-256-cbc -d -a -pbkdf2 -pass pass:$2 + diff --git a/desktopenvs/hyprland/hypr-usr/binds.conf b/desktopenvs/hyprland/hypr-usr/binds.conf index dcc8949..92be6d7 100644 --- a/desktopenvs/hyprland/hypr-usr/binds.conf +++ b/desktopenvs/hyprland/hypr-usr/binds.conf @@ -14,9 +14,22 @@ $menu = ulauncher-toggle ### GESTURES ### #################### +gesture = 2, pinchout, move +gesture = 2, pinchin, dispatcher, exec, $menu gesture = 3, horizontal, workspace gesture = 3, up, dispatcher, movetoworkspacesilent, special:magic gesture = 3, down, special, magic +gesture = 3, pinchin, float, tile +gesture = 3, pinchout, float, float + +gesture = 4, pinchout, close +gesture = 4, pinchin, dispatcher, exec, $terminal + +gesture = 4, down, dispatcher, movetoworkspace, special:magic +gesture = 4, up, dispatcher, movetoworkspace, r+0 + +gesture = 4, left, dispatcher, movetoworkspace, r+1 +gesture = 4, right, dispatcher, movetoworkspace, r-1 #################### ### KEYBINDINGSS ### @@ -213,7 +226,7 @@ bind = $mainMod SHIFT, S, exec, killall nwg-dock-hyprland && nwg-dock-hyprland - bind = $mainMod SHIFT, D, exec, killall nwg-dock-hyprland && nwg-dock-hyprland -c ~/Dotfiles/desktopenvs/hyprland/scripts/drawer.sh -mb 15 -r -s style.css -p bottom bindr = $mainMod, D, exec, nwg-dock-hyprland -bind = $mainMod, A, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/drawer.sh +bind = $mainMod SHIFT, A, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/drawer.sh bind = $mainMod, W, exec, ~/Dotfiles/desktopenvs/hyprland/scripts/menu.sh #GROUPS diff --git a/encrypt.sh b/encrypt.sh new file mode 100755 index 0000000..d5f7cba --- /dev/null +++ b/encrypt.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +echo $1 | openssl aes-256-cbc -a -salt -pbkdf2 -pass pass:$2 diff --git a/setup/modules/core-packages.sh b/setup/modules/core-packages.sh index 4f71943..fdacca0 100644 --- a/setup/modules/core-packages.sh +++ b/setup/modules/core-packages.sh @@ -1,2 +1,2 @@ #!/bin/bash -sudo pacman -Syu git 7zip pipewire distrobox htop nano vim firefox flatpak grub inetutils networkmanager neovim openssh base base-devel cockpit cockpit-files cockpit-podman zip unzip ufw fastfetch git wireplumber wpa_supplicant tree traceroute smartmontools ruby-pkg-config rust rustup usbutils pciutils qrencode bind btop gcc glib2 python python-pip atool nvim curl wget fastfetch fail2ban man-db wprs mc yazi atftp base base-devel btrfs-progs bluez ffmpeg gcc git grub htop inetutils iwd jq ldns libpulse linux linux-firmware openssh smartmontools traceroute ufw unzip zip vim wireless_tools wpa_supplicant zram-generator podman podman-compose vnstat inetutils symlinks arch-install-scripts greetd-tuigreet fd less +sudo pacman -Syu git 7zip pipewire distrobox htop nano vim firefox flatpak grub inetutils networkmanager neovim openssh base base-devel cockpit cockpit-files cockpit-podman zip unzip ufw fastfetch git wireplumber wpa_supplicant tree traceroute smartmontools ruby-pkg-config rust rustup usbutils pciutils qrencode bind btop gcc glib2 python python-pip atool nvim curl wget fastfetch fail2ban man-db wprs mc yazi atftp base base-devel btrfs-progs bluez ffmpeg gcc git grub htop inetutils iwd jq ldns libpulse linux linux-firmware openssh smartmontools traceroute ufw unzip zip vim wireless_tools wpa_supplicant zram-generator podman podman-compose vnstat inetutils symlinks arch-install-scripts greetd-tuigreet fd less cronie diff --git a/setup/modules/core.sh b/setup/modules/core.sh index 6b21e28..90048c5 100644 --- a/setup/modules/core.sh +++ b/setup/modules/core.sh @@ -4,6 +4,10 @@ echo "enabling NetworkManager" sudo systemctl enable NetworkManager.service +#cron setup +echo "enabling cronie" +sudo systemctl enable cronie.service + #greetd setup echo "Installing greetd" sudo cp -f ~/Dotfiles/desktopenvs/hyprland/greetd-tuigreet/config.toml /etc/greetd/config.toml diff --git a/zshplugins.sh b/zshplugins.sh old mode 100644 new mode 100755