Changes on Celestia
This commit is contained in:
parent
705a2aaaa7
commit
f4c6430eb4
|
@ -16,7 +16,9 @@ class Config(BaseConfig):
|
||||||
|
|
||||||
# Default Applications
|
# Default Applications
|
||||||
app_terminal = "terminator"
|
app_terminal = "terminator"
|
||||||
app_launcher = "/home/kevin/bin/dmenu_wal.sh"
|
#app_launcher = "/home/kevin/bin/dmenu_wal.sh"
|
||||||
|
app_launcher = "dmenu_run -i -p '»' -nb '" + background + "' -fn 'Noto Sans-11' -nf '" + inactive_light + \
|
||||||
|
"' -sb '" + highlight + "' -sf '" + foreground + "'"
|
||||||
web_browser = "firefox-developer-edition"
|
web_browser = "firefox-developer-edition"
|
||||||
file_manager = "thunar"
|
file_manager = "thunar"
|
||||||
app_chat = "/home/kevin/bin/ramboxpro"
|
app_chat = "/home/kevin/bin/ramboxpro"
|
||||||
|
|
|
@ -149,6 +149,9 @@ class Kuro(BaseTheme):
|
||||||
# Floating toggle
|
# Floating toggle
|
||||||
Key([self.mod, "shift"], 'f', lazy.window.toggle_floating()),
|
Key([self.mod, "shift"], 'f', lazy.window.toggle_floating()),
|
||||||
|
|
||||||
|
# Pinned toggle
|
||||||
|
Key([self.mod], 'p', lazy.function(self.toggle_pinned)),
|
||||||
|
|
||||||
# Toggle between split and unsplit sides of stack.
|
# Toggle between split and unsplit sides of stack.
|
||||||
# Split = all windows displayed
|
# Split = all windows displayed
|
||||||
# Unsplit = 1 window displayed, like Max layout, but still with
|
# Unsplit = 1 window displayed, like Max layout, but still with
|
||||||
|
@ -180,7 +183,7 @@ class Kuro(BaseTheme):
|
||||||
# Screenshot key
|
# Screenshot key
|
||||||
Key([], "Print", lazy.spawn(Config.get('cmd_screenshot', 'xfce4-screenshooter'))),
|
Key([], "Print", lazy.spawn(Config.get('cmd_screenshot', 'xfce4-screenshooter'))),
|
||||||
|
|
||||||
# Alt Screenshot
|
# Alt screenshot
|
||||||
Key([self.mod], "Print", lazy.spawn(Config.get('cmd_alt_screenshot', 'xfce4-screenshooter'))),
|
Key([self.mod], "Print", lazy.spawn(Config.get('cmd_alt_screenshot', 'xfce4-screenshooter'))),
|
||||||
|
|
||||||
# Toggle between different layouts as defined below
|
# Toggle between different layouts as defined below
|
||||||
|
@ -564,6 +567,12 @@ class Kuro(BaseTheme):
|
||||||
|
|
||||||
window.floating = True
|
window.floating = True
|
||||||
|
|
||||||
|
# Pinned toggle function
|
||||||
|
@staticmethod
|
||||||
|
def toggle_pinned(qtile):
|
||||||
|
windows = qtile.cmd_windows()
|
||||||
|
print(windows)
|
||||||
|
|
||||||
# QTile base callbacks
|
# QTile base callbacks
|
||||||
def callback_startup_once(self, *args, **kwargs):
|
def callback_startup_once(self, *args, **kwargs):
|
||||||
self.update_wallpaper(self.qtile)
|
self.update_wallpaper(self.qtile)
|
||||||
|
|
|
@ -8,4 +8,5 @@ python-osc
|
||||||
playerctl
|
playerctl
|
||||||
|
|
||||||
xfce4-screenshooter
|
xfce4-screenshooter
|
||||||
xfce4-clipman-plugin
|
xfce4-clipman-plugin
|
||||||
|
wireless_tools
|
||||||
|
|
Loading…
Reference in a new issue