aboutsummaryrefslogtreecommitdiff
path: root/home-manager/laptop/hyprland/scripts/rofi-modes
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/laptop/hyprland/scripts/rofi-modes')
-rwxr-xr-xhome-manager/laptop/hyprland/scripts/rofi-modes20
1 files changed, 0 insertions, 20 deletions
diff --git a/home-manager/laptop/hyprland/scripts/rofi-modes b/home-manager/laptop/hyprland/scripts/rofi-modes
deleted file mode 100755
index 2d52802..0000000
--- a/home-manager/laptop/hyprland/scripts/rofi-modes
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-case $(echo -e "clipboard\nemoji\ncalc" | rofi -dmenu) in
- emoji) arg=emoji;;
- calc) arg=calc;;
- clipboard) cliphist list | rofi -dmenu -display-columns 2 | cliphist decode | wl-copy
- exit;;
- bitwarden) if [[ $XDG_BACKEND == "wayland" ]]; then
- typer=wtype
- clip=wl-copy
- else
- typer=xdotool
- clip=xclip
- fi
- rofi-rbw --typer $typer --clip $clip
- exit;;
- *)exit;;
-esac
-
-rofi -modi $arg -show $arg