- fixed dpi setting for awesome.
- changed screenshot to slurp. - added slurp to reqs - removed dpi setting from autostart
This commit is contained in:
parent
24c8a05204
commit
215031f5a2
|
@ -0,0 +1,2 @@
|
||||||
|
xrandr --dpi 120 --output eDP-1 --scale 1.2x1.2
|
||||||
|
exec awesome
|
|
@ -103,9 +103,6 @@ editor_cmd = terminal .. " -e " .. editor
|
||||||
-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
|
-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
|
||||||
-- However, you can use another modifier like Mod1, but it may interact with others.
|
-- However, you can use another modifier like Mod1, but it may interact with others.
|
||||||
modkey = "Mod4"
|
modkey = "Mod4"
|
||||||
if awesome.hostname == "DangerNoodle" then
|
|
||||||
--modkey = "Mod3"
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
-- Table of layouts to cover with awful.layout.inc, order matters.
|
-- Table of layouts to cover with awful.layout.inc, order matters.
|
||||||
|
@ -322,7 +319,7 @@ awful.screen.connect_for_each_screen(function(screen)
|
||||||
screen.mylayoutbox,
|
screen.mylayoutbox,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- Add widgets to the wibox
|
-- Add widgets to the wibox
|
||||||
|
|
|
@ -304,6 +304,10 @@ bind = $mainMod SHIFT, i, togglesplit, # dwindle
|
||||||
bind = $mainMod, f, fullscreen, 0
|
bind = $mainMod, f, fullscreen, 0
|
||||||
bind = $mainMod SHIFT, m, fullscreen, 1
|
bind = $mainMod SHIFT, m, fullscreen, 1
|
||||||
|
|
||||||
|
# screenshot
|
||||||
|
bind = $mainMod, escape, exec, grim -g "$(slurp -b 00000088 -c cba6f7; sleep 0.5)" - | wl-copy
|
||||||
|
bind = $mainMod shift, escape, exec, grim -o HDMI-A-1 - | wl-copy
|
||||||
|
|
||||||
# layout stuffs
|
# layout stuffs
|
||||||
bind = $mainMod SHIFT, space, exec, $HOME/.config/hypr/cycle-layout.sh
|
bind = $mainMod SHIFT, space, exec, $HOME/.config/hypr/cycle-layout.sh
|
||||||
bind = $mainMod, i, cyclenext
|
bind = $mainMod, i, cyclenext
|
||||||
|
|
|
@ -14,11 +14,6 @@ xset s 0
|
||||||
nitrogen --restore &
|
nitrogen --restore &
|
||||||
xrdb -merge /home/iceyrazor/.Xresources &
|
xrdb -merge /home/iceyrazor/.Xresources &
|
||||||
|
|
||||||
if [ $extra == 1 ]; then
|
|
||||||
xrandr --dpi 90 &
|
|
||||||
xrandr --output Virtual-1 --mode 1920x1080
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$WAYLAND_DISPLAY" ]; then
|
if [ -z "$WAYLAND_DISPLAY" ]; then
|
||||||
xcompmgr &
|
xcompmgr &
|
||||||
setxkbmap -option caps:swapescape
|
setxkbmap -option caps:swapescape
|
||||||
|
|
|
@ -41,8 +41,8 @@ if [ $artix ] || [ $arch ]; then
|
||||||
$sudo pacman -S --noconfirm zsh bat ntfs-3g inetutils doas atuin gvfs-mtp btop htop wezterm rxvt-unicode lf ripgrep rofi-wayland networkmanager
|
$sudo pacman -S --noconfirm zsh bat ntfs-3g inetutils doas atuin gvfs-mtp btop htop wezterm rxvt-unicode lf ripgrep rofi-wayland networkmanager
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
$sudo pacman -S --noconfirm v4l2loopback-dkms sddm lxappearance reflector gnome-keyring yt-dlp grim
|
$sudo pacman -S --noconfirm v4l2loopback-dkms sddm lxappearance reflector gnome-keyring yt-dlp grim slurp libnotify
|
||||||
paru -S --noconfirm obs-studio-git gpu-screen-recorder gpu-screen-recorder-gtk urlview flameshot-git
|
paru -S --noconfirm obs-studio-git gpu-screen-recorder gpu-screen-recorder-gtk urlview
|
||||||
|
|
||||||
# fun
|
# fun
|
||||||
$sudo pacman -S --noconfirm fastfetch cmus vlc cowsay openrgb steam
|
$sudo pacman -S --noconfirm fastfetch cmus vlc cowsay openrgb steam
|
||||||
|
|
Loading…
Reference in New Issue