Switch from sway to hyprland

This commit is contained in:
Kiana Sheibani 2024-02-09 17:17:48 -05:00
parent 524bffc068
commit 2be0e3847b
16 changed files with 194 additions and 204 deletions

View file

@ -1,6 +1,6 @@
configuration {
cycle: false;
modi: "drun,run,workspace:~/.config/rofi/workspace.sh,workspacemove:~/.config/rofi/workspacemove.sh";
modi: "drun";
font: "JetBrainsMono Nerd Font 14";
location: 0;
terminal: "alacritty";
@ -10,9 +10,6 @@ configuration {
drun-display-format: "{name}";
display-drun: "  Apps ";
display-run: "  Run ";
display-workspace: "  Workspace ";
display-workspacemove: "  Move to Workspace ";
// Bindings
kb-remove-to-eol: "";

View file

@ -1,6 +0,0 @@
@import "config.rasi"
configuration {
show-icons: false;
}

View file

@ -1,8 +0,0 @@
#!/usr/bin/env bash
if [ $# -ne 0 ]; then
swaymsg workspace "$@" > /dev/null
else
swaymsg -t get_workspaces |
jq -r 'map(.name) + ["10:browser","20:terminal","30:code","40:files","50:discord","60:settings"] | unique | .[]'
fi

View file

@ -1,8 +0,0 @@
#!/usr/bin/env bash
if [ $# -ne 0 ]; then
swaymsg move container to workspace "$@" > /dev/null
else
swaymsg -t get_workspaces |
jq -r 'map(.name) + ["10:browser","20:terminal","30:code","40:files","50:discord","60:settings"] | unique | .[]'
fi