Simple Wayfire Keybind

Some simple Wayfire custom keybind ScreenShot You can use grim and slurp to have screenshot function grim screenshot slurp select a region Install grim and slurp yay -S grim slurp For example shell script # ~/.config/wayfire/scripts/screenshot.sh path="/home/novel2430/Pictures/screenshot/" # <--- Where you want to save your screenshots now_date=$(date '+%Y%m%d-%H%M%S') file_name="${path}${now_date}.png" msg="save as ${file_name}" case $1 in full) grim ${file_name} && dunstify -a "Screenshot" "Full" "${msg}" -r 2003 ;; select) grim -g "$(slurp)" ${file_name} && dunstify -a "Screenshot" "Select" "${msg}" -r 2003 ;; esac Clipboard Manager We need two packages: cliphist and wl-clipboard ...

April 8, 2024 · 1 min · Wei, Feng

Basic Wayfire Applications

Applications on Wayfire Setup Wayfire Basic Environment [ App Menu ] (wofi) yay -S wofi # ~/.config/wayfire.ini ... # Start your launcher # https://hg.sr.ht/~scoopta/wofi # Note: Add mode=run or mode=drun to ~/.config/wofi/config. # You can also specify the mode with --show option. binding_launcher = <super> KEY_D # <-- Change key binding command_launcher = wofi --show drun # <-- Change exec command ... [ Web Browser ] (firefox) yay -S firefox Now you can use Wofi to open Firefox ...

March 26, 2024 · 2 min · Wei, Feng

Basic Archlinux Wayfire Install

Basic ArchLinux(UEFI) + WayFire Install Basic Arch Install [ Check UEFI or BIOS ] ls /sys/firmware/efi/efivars If the directory not exist, you are not in UEFI mode. [ Internet ] Check system activate internet interface ip link For Ethernet (DHCP) Good to go! For WiFi (iwd) enter interactive prompt iwctl list all wifi device [iwd] device list select the device you want to use, i.e: wlan0 and start scanning [iwd] station <device> scan after scanning, you can list all available networks ...

March 26, 2024 · 3 min · Wei, Feng