#Everforest Sway
40 messages · Page 1 of 1 (latest)
Nice grain nerd

guy: touch grass
me: installs everforest
looks great btw how'd you remove the -- INSERT -- that shows up at the bottom of neovim
Id like for it to be right in my status bar (lualine)
But in my config, the mode is shown both in lualine and at the bottom of neovim
honestly no clue, I just use the LazyVim defaults with the everforest-nvim theme
aint no way bro has 1126 AUR packages and no pacman ones
thats just how nerdfetch shows it
look at the actual fetch
howd you get blur? sway compositor doesn't support blur
SwayFX
oh you use swayFX
nah im fine
plus i dont use blur i was just curious. i just use solid colour
Dotfiles are up
https://github.com/overseerboots/sway_dotfiles
nice
Laptop
i actually prefer this over the other one
how come?
the UI is very consistent, just like your other one, and i really like the rofi config. the wallpaper also feels a bit nicer.
also vlc looks really nice
rofi config is the same on my other one I just couldn't be bothered to screenshot it since the screenshot script I made also uses rofi to display it's options and you cant have more than 1 instance open at a time
it uses grimshot
vro
#! /bin/sh
# Show the screenshot menu via rofi, and ask what type of screenshot to take.
chosen=$(printf " Active Window\n Full Display\n Active Display\n Select Region" | rofi -dmenu -i)
# Do the screenshot using grimshot
case "$chosen" in
" Active Window") grimshot --notify savecopy active ;;
" Full Display") grimshot --notify savecopy screen ;;
" Active Display") grimshot --notify savecopy output ;;
" Select Region") grimshot --notify savecopy area ;;
*) exit 1 ;;
esac
why not just bind a key to execute grimshot in sway's ocnfig? like i have here
bindsym Shift+Print exec grim - | wl-copy && wl-paste > ~/Pictures/Screenshots/Screenshot-$(date +%F_%T).png && notify-send "Fullscreen screenshot taken" "A fullscreen screenshot has successfully been taken."
because that can only do a fullscreen screenshot
and since I have multiple monitors it's easier to just bind prtscr to open a menu which lets me choose what type of screenshot to take
you can crop images
and binding 4 different key combos is tedious when i can just use a menu
takes too long
ok