Skip to main content

Posts

Showing posts from May, 2019

dmenu emoji

# sudo apt-get install rofi xdotool xsel || sudo yum install rofi xdotool xsel || sudo pacman -S rofi xdotool xsel git git clone https://github.com/cspeterson/splatmoji.git cd splatmoji # Call with default emoji and emoticon data files, copy result to clipboard ./splatmoji copy # Call with default emoji and emoticon data files, type out result ./splatmoji type # Call with a specific custom data file, copy result to clipboard ./splatmoji copy /path/to/data/file1 /path/to/data/file2 src  https://chrispeterson.info/splatmoji-easier-quick-pop-up-emoji-emoticon-input-on-linux/ git: https://github.com/cspeterson/splatmoji bindsym Mod1+slash exec --no-startup-id   ~/splatmoji/splatmoji copy

custom resolution in linux

> cvt 1920 1080 # 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync > sudo xrandr --newmode "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync >sudo xrandr --addmode eDP-1 "1920x1080_60.00"  new resolution is added  >  xrandr --output VGA1 --mode "1920x1080_60.00" or  u can use arandr/xrandr/lxrandr to swithch to new resolution or use de interface make shell script for auto loadhh nano cures.sh -------------------------------------------------------------------------------------------------------------------------- sudo xrandr --newmode "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync sudo xrandr --addmode eDP-1 "1920x1080_60.00"  xrandr --output eDP-1 --mode "1920x1080_60.00" -----------------------