mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-13 22:02:34 +00:00
feat: Adds hyprlauncher and configuration (currently requires '-git' versions of hypr*), removes walker (previously used launcher).
This commit is contained in:
1
TODO.md
1
TODO.md
@@ -2,6 +2,7 @@
|
||||
|
||||
## Arch Todos
|
||||
|
||||
- [ ] Update README, it's way out of date.
|
||||
- [x] Separate scripts that are used for configurations / store them somewhere aside
|
||||
from `~/.local/bin`
|
||||
- [x] Clipse didn't work when installed on a new machine when I try to use the
|
||||
|
||||
3
env/.config/hypr/hyprautostart.conf
vendored
3
env/.config/hypr/hyprautostart.conf
vendored
@@ -8,10 +8,9 @@
|
||||
|
||||
exec-once = pidof hyprpaper | uwsm app -- hyprpaper
|
||||
exec-once = pidof hypridle | uwsm app -- hypridle
|
||||
exec-once = uwsm app -- hyprlauncher -d
|
||||
exec-once = uwsm app -- elephant
|
||||
exec-once = uwsm app -- swaync
|
||||
# exec-once = uwsm app -- walker --gapplication-service &
|
||||
exec-once = uwsm app -- waybar
|
||||
exec-once = uwsm app -- clipse -listen
|
||||
#exec-once = protonmail-bridge-core -n
|
||||
|
||||
|
||||
6
env/.config/hypr/hyprinput.conf
vendored
6
env/.config/hypr/hyprinput.conf
vendored
@@ -24,9 +24,9 @@ input {
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
||||
gestures {
|
||||
workspace_swipe = false
|
||||
}
|
||||
# gestures {
|
||||
# workspace_swipe = false
|
||||
# }
|
||||
|
||||
# Example per-device config
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs for more
|
||||
|
||||
2
env/.config/hypr/hyprkeybinds.conf
vendored
2
env/.config/hypr/hyprkeybinds.conf
vendored
@@ -14,7 +14,7 @@ $terminal = uwsm app -- ghostty
|
||||
$browser = uwsm app -- brave
|
||||
$fileManager = $terminal -e yazi
|
||||
$fileBrowser = uwsm app -- nautilus
|
||||
$menu = uwsm app -- walker
|
||||
$menu = hyprlauncher
|
||||
$scripts = ~/.local/scripts/hypr
|
||||
$pwa = $scripts/launch-webapp
|
||||
$tmuxSessionator = ~/.local/scripts/tmux-sessionator
|
||||
|
||||
2
env/.config/hypr/hyprlauncher.conf
vendored
Normal file
2
env/.config/hypr/hyprlauncher.conf
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
desktop_launch_prefix = uwsm app --
|
||||
8
env/.config/hypr/hyprtoolkit.conf
vendored
Normal file
8
env/.config/hypr/hyprtoolkit.conf
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
background = rgb(1e1e2e)
|
||||
base = rgb(1e1e2e)
|
||||
alternate_base = rgb(11111b)
|
||||
text = rgb(cdd6f4)
|
||||
bright_text = rgb(89b4fa)
|
||||
accent = rgb(b4befe)
|
||||
accent_secondary = rgb(cba6f7)
|
||||
|
||||
138
env/.config/walker/config.toml
vendored
138
env/.config/walker/config.toml
vendored
@@ -1,138 +0,0 @@
|
||||
force_keyboard_focus = true # forces keyboard forcus to stay in Walker
|
||||
close_when_open = true # close walker when invoking while already opened
|
||||
selection_wrap = false # wrap list if at bottom or top
|
||||
global_argument_delimiter = "#" # query: firefox#https://benz.dev => part after delimiter will be ignored when querying. this should be the same as in the elephant config
|
||||
keep_open_modifier = "shift" # won't close on activation, but rather select the next item in the list
|
||||
exact_search_prefix = "'" # disable fuzzy searching
|
||||
theme = "default" # theme to use
|
||||
disable_mouse = false # disable mouse (on input and list only)
|
||||
|
||||
[shell]
|
||||
anchor_top = true
|
||||
anchor_bottom = true
|
||||
anchor_left = true
|
||||
anchor_right = true
|
||||
|
||||
[placeholders]
|
||||
"default" = { input = "Search", list = "No Results" } # placeholders for input and empty list, key is the providers name, so f.e. "desktopapplications" or "menus:other"
|
||||
|
||||
# [keybinds]
|
||||
# close = "Escape"
|
||||
# next = "Down"
|
||||
# previous = "Up"
|
||||
# toggle_exact = "ctrl e"
|
||||
# resume_last_query = "ctrl r"
|
||||
# quick_activate = ["F1", "F2", "F3", "F4"]
|
||||
|
||||
[providers]
|
||||
default = [
|
||||
"desktopapplications",
|
||||
"calc",
|
||||
"runner",
|
||||
"menus",
|
||||
"websearch",
|
||||
] # providers to be queried by default
|
||||
empty = ["desktopapplications"] # providers to be queried when query is empty
|
||||
|
||||
[[providers.prefixes]]
|
||||
prefix = ";"
|
||||
provider = "providerlist"
|
||||
|
||||
[[providers.prefixes]]
|
||||
prefix = "/"
|
||||
provider = "files"
|
||||
|
||||
[[providers.prefixes]]
|
||||
prefix = "."
|
||||
provider = "symbols"
|
||||
|
||||
[[providers.prefixes]]
|
||||
prefix = "!"
|
||||
provider = "todo"
|
||||
|
||||
[[providers.prefixes]]
|
||||
prefix = "="
|
||||
provider = "calc"
|
||||
|
||||
[[providers.prefixes]]
|
||||
prefix = "@"
|
||||
provider = "websearch"
|
||||
|
||||
[[providers.prefixes]]
|
||||
prefix = ":"
|
||||
provider = "clipboard"
|
||||
|
||||
[providers.archlinuxpkgs]
|
||||
default = "install"
|
||||
install = "Return"
|
||||
remove = "ctrl d"
|
||||
|
||||
[providers.calc]
|
||||
default = "copy"
|
||||
copy = "Return"
|
||||
save = "ctrl s"
|
||||
delete = "ctrl d"
|
||||
|
||||
[providers.websearch]
|
||||
default = "search"
|
||||
search = "Return"
|
||||
remove_history = "ctrl BackSpace"
|
||||
|
||||
[providers.providerlist]
|
||||
default = "activate"
|
||||
activate = "Return"
|
||||
|
||||
[providers.clipboard]
|
||||
time_format = "%d.%m. - %H:%M" # format for the clipboard item date
|
||||
default = "copy"
|
||||
copy = "Return"
|
||||
delete = "ctrl d"
|
||||
edit = "ctrl o"
|
||||
toggle_images_only = "ctrl i"
|
||||
|
||||
[providers.desktopapplications]
|
||||
default = "start"
|
||||
start = "Return"
|
||||
start_keep_open = "shift Return"
|
||||
remove_history = "ctrl BackSpace"
|
||||
toggle_pin = "ctrl p"
|
||||
|
||||
[providers.files]
|
||||
default = "open"
|
||||
open = "Return"
|
||||
open_dir = "ctrl Return"
|
||||
copy_path = "ctrl shift c"
|
||||
copy_file = "ctrl c"
|
||||
|
||||
[providers.todo]
|
||||
default = "save"
|
||||
save = "Return"
|
||||
delete = "ctrl d"
|
||||
mark_active = "ctrl a"
|
||||
mark_done = "ctrl f"
|
||||
clear = "ctrl x"
|
||||
|
||||
[providers.runner]
|
||||
default = "start"
|
||||
start = "Return"
|
||||
start_terminal = "shift Return"
|
||||
remove_history = "ctrl BackSpace"
|
||||
|
||||
[providers.dmenu]
|
||||
default = "select"
|
||||
select = "Return"
|
||||
|
||||
[providers.symbols]
|
||||
default = "copy"
|
||||
copy = "Return"
|
||||
remove_history = "ctrl BackSpace"
|
||||
|
||||
[providers.unicode]
|
||||
default = "copy"
|
||||
copy = "Return"
|
||||
remove_history = "ctrl BackSpace"
|
||||
|
||||
[providers.menus]
|
||||
default = "activate"
|
||||
activate = "Return"
|
||||
remove_history = "ctrl BackSpace"
|
||||
@@ -1,4 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
yay ${1:-"-S --noconfirm"} hyprland hyprpaper hyrpidle hyprlock \
|
||||
bc # used for some scripts.
|
||||
yay ${1:-"-S --noconfirm"} hyprland-git \
|
||||
hyprpaper-git \
|
||||
hypridle-git \
|
||||
hyprlock-git \
|
||||
hyprlauncher-git \
|
||||
xdg-desktop-portal-hyprland-git \
|
||||
bc # used for some scripts.
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
yay ${1:-"-S --noconfirm"} walker elephant elephant-calc elephant-symbols
|
||||
Reference in New Issue
Block a user