Update configs
This commit is contained in:
parent
8e7155d2c7
commit
90b64d8b50
4 changed files with 14 additions and 4 deletions
|
@ -53,3 +53,5 @@ windowrulev2 = workspace $ws_chat silent, class:(steam), title:^(Friends List)
|
||||||
|
|
||||||
windowrulev2 = fullscreen, class:^cs2$
|
windowrulev2 = fullscreen, class:^cs2$
|
||||||
windowrulev2 = workspace $ws_focus, class:^cs2$
|
windowrulev2 = workspace $ws_focus, class:^cs2$
|
||||||
|
windowrulev2 = fullscreen, class:^(steam_app_)
|
||||||
|
windowrulev2 = workspace $ws_focus, class:^(steam_app_)
|
||||||
|
|
|
@ -25,12 +25,14 @@ general {
|
||||||
gaps_out = 6
|
gaps_out = 6
|
||||||
border_size = 1
|
border_size = 1
|
||||||
|
|
||||||
cursor_inactive_timeout = 0
|
|
||||||
no_cursor_warps = true
|
|
||||||
|
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cursor {
|
||||||
|
inactive_timeout = 0
|
||||||
|
no_warps = true
|
||||||
|
}
|
||||||
|
|
||||||
misc {
|
misc {
|
||||||
disable_hyprland_logo = true
|
disable_hyprland_logo = true
|
||||||
background_color = 0x1E1F29
|
background_color = 0x1E1F29
|
||||||
|
|
|
@ -28,7 +28,8 @@ def init(c):
|
||||||
c.url.searchengines = {
|
c.url.searchengines = {
|
||||||
'DEFAULT': 'https://duckduckgo.com/?q={}',
|
'DEFAULT': 'https://duckduckgo.com/?q={}',
|
||||||
'ddg': 'https://duckduckgo.com/?q={}',
|
'ddg': 'https://duckduckgo.com/?q={}',
|
||||||
'kagi': 'https://kagi.com/search?q={}'
|
'kagi': 'https://kagi.com/search?q={}',
|
||||||
|
'lh': 'http://localhost:{}/',
|
||||||
}
|
}
|
||||||
c.url.start_pages = [
|
c.url.start_pages = [
|
||||||
'https://rss.serguzim.me/',
|
'https://rss.serguzim.me/',
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
import keybindings
|
import keybindings
|
||||||
import common
|
import common
|
||||||
|
import linkwarden
|
||||||
|
|
||||||
config.load_autoconfig()
|
config.load_autoconfig()
|
||||||
keybindings.init(config)
|
keybindings.init(config)
|
||||||
common.init(c)
|
common.init(c)
|
||||||
|
try:
|
||||||
|
linkwarden.init()
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
c.tabs.show = 'never'
|
c.tabs.show = 'never'
|
||||||
c.statusbar.show = 'never'
|
c.statusbar.show = 'never'
|
||||||
|
|
Loading…
Reference in a new issue