diff --git a/README.md b/README.md index cafd577..68f8b51 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ please note, this step is only needed when arch is to be installed on a new host - `sudo ./ctsetup.sh` - `sudo ct yay` (install yay, which is used to install aur packages) - `sudo ct uf` (full update, install packages) - - same as running the two commands `sudo ct s` (software) and `sudo ct d` (dots) + - same as running the two commands `sudo ct s` (software) and `sudo ct d h` (dots inc hyprland cfg) - `sudo ct dots+` (download wallpapers, fonts++) - loop install - until all programs are successfully installed, as i have experiences not all being installed at once - note that some packages (in `packages.txt`) might have to be removed, as they might no longer be active / be working diff --git a/docs/moveNiftyHere.maybe b/docs/moveNiftyHere.maybe new file mode 100644 index 0000000..0d758c9 --- /dev/null +++ b/docs/moveNiftyHere.maybe @@ -0,0 +1 @@ +? \ No newline at end of file diff --git a/dots/hyprland/hyprland.conf b/dots/hyprland/hyprland.conf index f3c8105..c628815 100644 --- a/dots/hyprland/hyprland.conf +++ b/dots/hyprland/hyprland.conf @@ -281,6 +281,14 @@ bind = , PRINT, exec, hyprshot -m region # region #bind = $mainMod, V, layoutmsg, preselect d # next window to the top (vertical mode) #bind = $mainMod SHIFT, V, layoutmsg, preselect d # next window to the bottom +# resize to the top/bottom +bind = $mainMod, R, submap, resize +submap = resize +bind = , up, resizeactive, 0 -100 +bind = , down, resizeactive, 0 100 +bind = , Return, submap, reset +submap = reset + # window cycle # https://github.com/hyprwm/Hyprland/issues/2061 #bind = ALT, TAB, cyclenext # cycle windows in same workspace diff --git a/scripts/99_deploy.sh b/scripts/99_deploy.sh index 6c6450f..6e8feb0 100755 --- a/scripts/99_deploy.sh +++ b/scripts/99_deploy.sh @@ -289,6 +289,20 @@ if [ ${operation} == "dots" ] ; then file_path=/home/${system_user}/.ssh deploy_file "${dots_trg}/ssh/${file_name}" "${file_path}/${file_name}" + # ---------- + # hyperland & friends + # ---------- + # hyprland + if [ ${parameter} == "hyprland" ] ; then + + file_name=hyprland.conf + file_path=/home/${system_user}/.config/hypr + create_dir ${file_path} + deploy_file "${dots_trg}/hyprland/${file_name}" "${file_path}/${file_name}" + + fi + + # ---------- # printing # @@ -356,16 +370,6 @@ if [ ${operation} == "dots" ] ; then create_dir ${file_path} deploy_file "${dots_trg}/helix/${file_name}" "${file_path}/${file_name}" - # hyprland - if [ ${parameter} == "hyprland" ] ; then - - file_name=hyprland.conf - file_path=/home/${system_user}/.config/hypr - create_dir ${file_path} - deploy_file "${dots_trg}/hyprland/${file_name}" "${file_path}/${file_name}" - - fi - # pcmanfm # bookmarks found in "dots/gtk/.gtk-bookmarks" file_name=pcmanfm.conf