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)
|
host_name=$(cat /proc/sys/kernel/hostname)
|
||||||
if [[ $host_name == "portalo" ]]; then
|
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"
|
#primary="HDMI-A-0"
|
||||||
#secondary="DVI-D-0"
|
#secondary="DVI-D-0"
|
||||||
|
|
||||||
bspc monitor $MONITOR_PRIMARY -d web terminal 3 4 5 6 game
|
bspc monitor $MONITOR_PRIMARY -d web terminal 3 4 5 6 game
|
||||||
bspc monitor $MONITOR_SECONDARY -d side-view voip messenger
|
bspc monitor $MONITOR_SECONDARY -d side-view voip messenger
|
||||||
|
|
||||||
sleep 0.1
|
sleep 1
|
||||||
bspc wm -O $MONITOR_PRIMARY $MONITOR_SECONDARY
|
bspc wm -O $MONITOR_PRIMARY $MONITOR_SECONDARY
|
||||||
|
|
||||||
elif [[ $host_name == *"laptop"* ]]; then
|
elif [[ $host_name == *"laptop"* ]]; then
|
||||||
|
xrandr --output $MONITOR_PRIMARY --auto
|
||||||
|
xrandr --output $MONITOR_SECONDARY --left-of $MONITOR_PRIMARY --auto
|
||||||
|
|
||||||
#primary="eDP-1"
|
#primary="eDP-1"
|
||||||
#secondary="HDMI-2"
|
#secondary="HDMI-2"
|
||||||
|
|
||||||
bspc monitor $MONITOR_PRIMARY -d web terminal 3 4 5 6 messenger
|
bspc monitor $MONITOR_PRIMARY -d web terminal 3 4 5 6 messenger
|
||||||
bspc monitor $MONITOR_SECONDARY -d side-view 9 10
|
bspc monitor $MONITOR_SECONDARY -d side-view 9 10
|
||||||
|
|
||||||
sleep 0.1
|
sleep 1
|
||||||
bspc wm -O $MONITOR_PRIMARY $MONITOR_SECONDARY
|
bspc wm -O $MONITOR_PRIMARY $MONITOR_SECONDARY
|
||||||
else
|
else
|
||||||
bspc monitor primary -d web terminal 3 4 5 6 7 8 9 10
|
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'
|
Plug 'sheerun/vim-polyglot'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
packadd! dracula_pro
|
|
||||||
|
|
||||||
|
|
||||||
"let g:indentLine_setColors = 0
|
"let g:indentLine_setColors = 0
|
||||||
|
|
||||||
|
@ -154,10 +152,15 @@ let g:jellybeans_overrides = {
|
||||||
\ '256ctermbg': 'none'
|
\ '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
|
highlight Normal ctermbg=NONE
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ Comment[it]= Un browser web vim-like utilizzabile da tastiera basato su PyQt5
|
||||||
Icon=qutebrowser
|
Icon=qutebrowser
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Network;WebBrowser;
|
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
|
Terminal=false
|
||||||
StartupNotify=true
|
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;
|
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()
|
_autostart_portalo()
|
||||||
{
|
{
|
||||||
xrandr --output DVI-D-0 --left-of HDMI-A-0
|
#xrandr --output DVI-D-0 --left-of HDMI-A-0
|
||||||
xrandr --output HDMI-A-0 --mode 2560x1440 --refresh 144
|
#xrandr --output HDMI-A-0 --mode 2560x1440 --refresh 144
|
||||||
}
|
}
|
||||||
|
|
||||||
_autostart_laptop()
|
_autostart_laptop()
|
||||||
{
|
{
|
||||||
xrandr --output eDP-1 --auto
|
#xrandr --output eDP-1 --auto
|
||||||
xrandr --output HDMI-2 --left-of eDP-1 --auto
|
#xrandr --output HDMI-2 --left-of eDP-1 --auto
|
||||||
}
|
}
|
||||||
|
|
||||||
_autostart_defaults()
|
_autostart_defaults()
|
||||||
|
|
Loading…
Reference in a new issue