Skip to content

Commit

Permalink
feat: init new workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
edapess committed Aug 18, 2023
1 parent 5a48adf commit 6311ee6
Showing 1 changed file with 2 additions and 22 deletions.
24 changes: 2 additions & 22 deletions qtile/workspaces.py
Original file line number Diff line number Diff line change
@@ -1,39 +1,19 @@
#####################################################################################
####..........####################............########################################
####..######..#################### ########..#########...############...##############
####..........#################### ########..########...############...################
####..############################...........########...############...##################
####..........##..####........#### ################...############...####################
################..############..## ##..........###............###............ ############
################..############..## ##..######..###########...#############...##############
########..........###...........######..........##########...#############...################
########..######..###..#######..######..#################...#############...##################
########..######..###..#######..######..........########...#############...####################
########..........###...........################################################################
#################################################################################################

from libqtile.config import Group

groups = []

# FOR QWERTY KEYBOARDS
group_names = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0",]

# FOR AZERTY KEYBOARDS
#group_names = ["ampersand", "eacute", "quotedbl", "apostrophe", "parenleft", "section", "egrave", "exclam", "ccedilla", "agrave",]

#group_labels = ["1 ", "2 ", "3 ", "4 ", "5 ", "6 ", "7 ", "8 ", "9 ", "0",]
# group_labels = ["", "", "", "", "", "", "", "", "", "",]
# group_labels = ["www", "code", "term", "sys", "doc", "vid", "mus", "files", "chat", "git",]
#group_labels awesome
group_labels = ["", "", "", "", "", "", "", "", "", "",]
group_layouts = ["monadtall", "max", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall", "monadtall",]
#group_layouts = ["monadtall", "matrix", "monadtall", "bsp", "monadtall", "matrix", "monadtall", "bsp", "monadtall", "monadtall",]
group_labels = ["", "", "", "", "", "", "", "", "", "",]

for i in range(len(group_names)):
groups.append(
Group(
name=group_names[i],
layout=group_layouts[i].lower(),
label=group_labels[i],
))
))

0 comments on commit 6311ee6

Please sign in to comment.