summaryrefslogtreecommitdiff
path: root/.config/qtile/keys.py
blob: 6d752be365dc9cfd2bb3e87ecf38442267e20865 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/usr/bin/env python3

from libqtile.config import Key
from libqtile.command import lazy
from libqtile.config import Click, Drag



class MyKeys():
    def __init__(self,mod,browser,term,editor):
        self.mod = mod
        self.browser = browser
        self.term = term
        self.editor = editor


    def init_keys(self):
        my_keys = [
                Key([self.mod], "Return",
                    lazy.spawn(self.term),
                    ),
                Key([self.mod, "shift"], "a",
                    lazy.spawn('anki'),
                    ),
                Key([self.mod, "shift"], "m",
                    lazy.spawn("spotify"),
                    ),
                Key([self.mod], "Tab",
                    lazy.spawn("rofi -show drun"),
                    ),
                Key([self.mod], "w",
                    lazy.spawn("rofi -show window"),
                    ),
                Key([self.mod], "p",
                    lazy.spawn("passmenu -p 'Password for: '"),
                    ),
                Key([self.mod], "b",
                    lazy.spawn(self.browser),
                    ),
                Key([self.mod, "shift"], "c",
                    lazy.next_layout(),
                    ),
                Key([self.mod], "q",
                    lazy.window.kill(),
                    ),
                Key([self.mod, "shift"], "r",
                    lazy.restart(),
                    ),
                Key([self.mod, "shift"], "0",
                    lazy.shutdown(),
                    ),
                Key([self.mod, "shift"], "e",
                    lazy.spawn(self.editor),
                    ),
                ### Switch focus of monitors
                Key([self.mod], "period",
                    lazy.next_screen(),
                    ),
                Key([self.mod], "comma",
                    lazy.prev_screen(),
                    ),
                ### Treetab controls
                Key([self.mod, "shift"], "h",
                    lazy.layout.move_left(),
                    ),
                Key([self.mod, "shift"], "l",
                    lazy.layout.move_right(),
                    ),
                ### Window controls
                Key([self.mod], "j",
                    lazy.layout.down(),
                    ),
                Key([self.mod], "k",
                    lazy.layout.up(),
                    ),
                Key([self.mod, "shift"], "j",
                    lazy.layout.shuffle_down(),
                    lazy.layout.section_down(),
                    ),
                Key([self.mod, "shift"], "k",
                    lazy.layout.shuffle_up(),
                    lazy.layout.section_up(),
                    ),
                Key([self.mod], "h",
                    lazy.layout.shrink(),
                    lazy.layout.decrease_nmaster(),
                    ),
                Key([self.mod], "l",
                    lazy.layout.grow(),
                    lazy.layout.increase_nmaster(),
                    ),
                Key([self.mod], "n",
                    lazy.layout.normalize(),
                    ),
                Key([self.mod], "m",
                    lazy.layout.maximize(),
                    ),
                Key([self.mod, "shift"], "f",
                    lazy.window.toggle_floating(),
                    ),
                Key([self.mod], "f",
                    lazy.window.toggle_fullscreen(),
                    ),
                ### Stack controls
                Key([self.mod, "shift"], "Tab",
                    lazy.layout.rotate(),
                    lazy.layout.flip(),
                    ),
                Key([self.mod, "shift"], "space",
                    lazy.layout.toggle_split(),
                    ),
                ### Volume controls
                Key([], "XF86AudioLowerVolume",
                    lazy.spawn('amixer sset Master 5%-'),
                ),
                Key([], "XF86AudioRaiseVolume",
                    lazy.spawn('amixer sset Master 5%+'),
                ),
                ### Spotify
                Key([self.mod, "shift"], "p",
                    lazy.spawn("spotify-control play-pause"),
                ),
                Key([self.mod, "shift"], "n",
                    lazy.spawn("spotify-control next"),
                ),
                Key([self.mod, "shift"], "b",
                    lazy.spawn("spotify-control previous"),
                ),
                ### Change languages
                Key([self.mod], "F1",
                lazy.spawn("setxkbmap us -option caps:swapescape"),
                ),
                Key([self.mod],"F2",
                lazy.spawn("setxkbmap gr"),
                ),
            ]

        return my_keys

    def init_mouse(self):
        mouse_keys = [
            Drag([self.mod], "Button1", lazy.window.set_position_floating(), start=lazy.window.get_position()),
            Drag([self.mod], "Button3", lazy.window.set_size_floating(), start=lazy.window.get_size()),
            Click([self.mod], "Button2", lazy.window.bring_to_front()),
        ]
        return mouse_keys