Compare commits
3 commits
1277631407
...
0d4587d023
Author | SHA1 | Date | |
---|---|---|---|
0d4587d023 | |||
5461c70146 | |||
0cc574853c |
4 changed files with 20 additions and 12 deletions
|
@ -9,23 +9,28 @@ bspc config presel_feedback_color "#6272a4"
|
|||
|
||||
host_name=$(cat /proc/sys/kernel/hostname)
|
||||
if [[ $host_name == "portalo" ]]; then
|
||||
xrandr --output $MONITOR_SECONDARY --left-of $MONITOR_SECONDARY
|
||||
xrandr --output $MONITOR_PRIMARY --mode 2560x1440 --refresh 144
|
||||
#primary="HDMI-A-0"
|
||||
#secondary="DVI-D-0"
|
||||
|
||||
bspc monitor $MONITOR_PRIMARY -d web terminal 3 4 5 6 game
|
||||
bspc monitor $MONITOR_SECONDARY -d side-view voip messenger
|
||||
|
||||
sleep 0.1
|
||||
sleep 1
|
||||
bspc wm -O $MONITOR_PRIMARY $MONITOR_SECONDARY
|
||||
|
||||
elif [[ $host_name == *"laptop"* ]]; then
|
||||
xrandr --output $MONITOR_PRIMARY --auto
|
||||
xrandr --output $MONITOR_SECONDARY --left-of $MONITOR_PRIMARY --auto
|
||||
|
||||
#primary="eDP-1"
|
||||
#secondary="HDMI-2"
|
||||
|
||||
bspc monitor $MONITOR_PRIMARY -d web terminal 3 4 5 6 messenger
|
||||
bspc monitor $MONITOR_SECONDARY -d side-view 9 10
|
||||
|
||||
sleep 0.1
|
||||
sleep 1
|
||||
bspc wm -O $MONITOR_PRIMARY $MONITOR_SECONDARY
|
||||
else
|
||||
bspc monitor primary -d web terminal 3 4 5 6 7 8 9 10
|
||||
|
|
|
@ -31,8 +31,6 @@ call plug#begin('~/.config/vim/plugged')
|
|||
Plug 'sheerun/vim-polyglot'
|
||||
call plug#end()
|
||||
|
||||
packadd! dracula_pro
|
||||
|
||||
|
||||
"let g:indentLine_setColors = 0
|
||||
|
||||
|
@ -154,10 +152,15 @@ let g:jellybeans_overrides = {
|
|||
\ '256ctermbg': 'none'
|
||||
\ },
|
||||
\ }
|
||||
"colorscheme dracula
|
||||
let g:dracula_colorterm = 0
|
||||
colorscheme dracula_pro
|
||||
|
||||
try
|
||||
packadd! dracula_pro
|
||||
colorscheme dracula_pro
|
||||
catch
|
||||
colorscheme dracula
|
||||
endtry
|
||||
|
||||
let g:dracula_colorterm = 0
|
||||
highlight Normal ctermbg=NONE
|
||||
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ Comment[it]= Un browser web vim-like utilizzabile da tastiera basato su PyQt5
|
|||
Icon=qutebrowser
|
||||
Type=Application
|
||||
Categories=Network;WebBrowser;
|
||||
Exec=qutebrowser -B /home/tobias/.local/share/qutebrowser-kiosk -C /home/tobias/.config/qutebrowser/config_kiosk.py --qt-arg name kiosk %u
|
||||
Exec=qutebrowser -B .local/share/qutebrowser-kiosk -C .config/qutebrowser/config_kiosk.py --qt-arg name kiosk %u
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/qute;
|
||||
|
|
|
@ -15,14 +15,14 @@ fi
|
|||
|
||||
_autostart_portalo()
|
||||
{
|
||||
xrandr --output DVI-D-0 --left-of HDMI-A-0
|
||||
xrandr --output HDMI-A-0 --mode 2560x1440 --refresh 144
|
||||
#xrandr --output DVI-D-0 --left-of HDMI-A-0
|
||||
#xrandr --output HDMI-A-0 --mode 2560x1440 --refresh 144
|
||||
}
|
||||
|
||||
_autostart_laptop()
|
||||
{
|
||||
xrandr --output eDP-1 --auto
|
||||
xrandr --output HDMI-2 --left-of eDP-1 --auto
|
||||
#xrandr --output eDP-1 --auto
|
||||
#xrandr --output HDMI-2 --left-of eDP-1 --auto
|
||||
}
|
||||
|
||||
_autostart_defaults()
|
||||
|
|
Loading…
Reference in a new issue