clipboard history + no aur

This commit is contained in:
2026-06-20 08:38:19 -05:00
parent c882436498
commit 5e9e9f8599
4 changed files with 19 additions and 9 deletions
+3 -3
View File
@@ -28,6 +28,6 @@ let flatpak_xdg = [
$env.XDG_DATA_DIRS = ($base_xdg | append $flatpak_xdg | str join ":")
$env.PYENV_ROOT = ($env.HOME | path join ".pyenv")
$env.PATH = ($env.PATH | split row (char env_sep) | prepend $'($env.PYENV_ROOT)/bin' | prepend $'($env.PYENV_ROOT)/shims')
alias sway = dbus-run-session sway
$env.PATH = ( $env.PATH | split row (char env_sep) | prepend "/opt/bin")
alias sway = dbus-run-session sway
+1 -1
View File
@@ -130,7 +130,7 @@ def take_screenshot(output_path):
try:
time.sleep(0.2)
freeze = subprocess.Popen(["wayfreeze"])
freeze = subprocess.Popen(["/opt/bin/wayfreeze"])
time.sleep(0.1)
try:
+4 -1
View File
@@ -30,7 +30,7 @@ def apply_ui_and_environment(sway):
sway.cmd("exec_always gsettings set org.gnome.desktop.interface cursor-size '24'")
sway.cmd("exec_always gsettings set org.gnome.desktop.interface font-name 'Noto Sans Mono 10'")
sway.cmd("exec_always gsettings set org.gnome.desktop.interface.desktop-app-info-default-handler 'librewolf.desktop'")
run_sh("wl-paste --watch cliphist store")
run_sh("/usr/lib/xdg-desktop-portal -r")
sway.cmd("setenv GTK_USE_PORTAL 0")
sway.cmd("setenv XDG_CURRENT_DESKTOP sway")
@@ -115,6 +115,9 @@ def bind_keys(sway):
@assign_key(f"{mod}+r")
def open_menu(): return "exec wofi --show drun --width 400 --height 500 --layer overlay --location 1"
@assign_key(f"{mod}+o")
def open_menu(): return "exec cliphist list | wofi -S dmenu --width 400 --height 500 --layer overlay --location 3 | cliphist decode | wl-copy"
@assign_key("Ctrl+Shift+Alt+Mod4+L")
def open_linkedin(): return "exec flatpak run io.github.ungoogled_software.ungoogled_chromium https://www.linkedin.com"