From 1a26ad008953eb3524ab28095f6523c6870cf363 Mon Sep 17 00:00:00 2001 From: Peter Kurfer Date: Wed, 23 Aug 2023 22:11:17 +0200 Subject: [PATCH] ci: test setup.sh --- .drone.yml | 43 ++++++++++++++++++++++++++++++++++ home/config/hypr/hyprland.conf | 4 ---- home/zshrc | 6 ++++- 3 files changed, 48 insertions(+), 5 deletions(-) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..2ec14b4 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,43 @@ +--- +kind: pipeline +type: docker +name: arm64-docker + +platform: + os: linux + arch: arm64 + +trigger: + refs: + include: + - refs/heads/main + - refs/pull/** + - refs/tags/** + +steps: + - name: Validate setup.sh + image: docker.io/fedora:38 + commands: + - ./setup.sh + +--- +kind: pipeline +type: docker +name: amd64-docker + +platform: + os: linux + arch: amd64 + +trigger: + refs: + include: + - refs/heads/main + - refs/pull/** + - refs/tags/** + +steps: + - name: Validate setup.sh + image: docker.io/fedora:38 + commands: + - ./setup.sh diff --git a/home/config/hypr/hyprland.conf b/home/config/hypr/hyprland.conf index 8e4e0ef..d756b76 100644 --- a/home/config/hypr/hyprland.conf +++ b/home/config/hypr/hyprland.conf @@ -52,10 +52,6 @@ decoration { # See https://wiki.hyprland.org/Configuring/Variables/ for more rounding = 10 - blur = yes - blur_size = 3 - blur_passes = 1 - blur_new_optimizations = on drop_shadow = yes shadow_range = 4 diff --git a/home/zshrc b/home/zshrc index adf2402..c1a0d58 100644 --- a/home/zshrc +++ b/home/zshrc @@ -48,4 +48,8 @@ for file in $HOME/.config/zsh/*.zsh; do done znap eval starship 'starship init zsh --print-full-init' -znap prompt \ No newline at end of file +znap prompt + +### MANAGED BY RANCHER DESKTOP START (DO NOT EDIT) +export PATH="/home/baez/.rd/bin:$PATH" +### MANAGED BY RANCHER DESKTOP END (DO NOT EDIT)